From: Chenyi Qiang <[email protected]> There's an existing helper function designed to obtain the block size. Modify ram_block_attribute_create() to use this function for consistency.
Tested-by: Farrah Chen <[email protected]> Signed-off-by: Chenyi Qiang <[email protected]> Link: https://lore.kernel.org/r/[email protected] [peterx: fix double spaces, per david] Signed-off-by: Peter Xu <[email protected]> --- system/ram-block-attributes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/ram-block-attributes.c b/system/ram-block-attributes.c index a7579de5b4..fb7c5c2746 100644 --- a/system/ram-block-attributes.c +++ b/system/ram-block-attributes.c @@ -390,7 +390,7 @@ int ram_block_attributes_state_change(RamBlockAttributes *attr, RamBlockAttributes *ram_block_attributes_create(RAMBlock *ram_block) { - const int block_size = qemu_real_host_page_size(); + const int block_size = ram_block_attributes_get_block_size(); RamBlockAttributes *attr; MemoryRegion *mr = ram_block->mr; -- 2.50.1
