memory hotplug is memory block aligned instead of section aligned. This patch fix the range check during hotplug. Signed-off-by: Wei Yang <richard.weiyang@xxxxxxxxx> --- drivers/base/memory.c | 3 ++- include/linux/memory.h | 2 ++ mm/memory_hotplug.c | 9 +++++---- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/drivers/base/memory.c b/drivers/base/memory.c index c7c4e0325cdb..b54cfe9cd98b 100644 --- a/drivers/base/memory.c +++ b/drivers/base/memory.c @@ -31,7 +31,8 @@ static DEFINE_MUTEX(mem_sysfs_mutex); #define to_memory_block(dev) container_of(dev, struct memory_block, dev) -static int sections_per_block; +int sections_per_block; +EXPORT_SYMBOL(sections_per_block); static inline int base_memory_block_id(int section_nr) { diff --git a/include/linux/memory.h b/include/linux/memory.h index b723a686fc10..51a6355aa56d 100644 --- a/include/linux/memory.h +++ b/include/linux/memory.h @@ -142,4 +142,6 @@ extern struct memory_block *find_memory_block(struct mem_section *); */ extern struct mutex text_mutex; +extern int sections_per_block; + #endif /* _LINUX_MEMORY_H_ */ diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c index 387ca386142c..f5d06afc8645 100644 --- a/mm/memory_hotplug.c +++ b/mm/memory_hotplug.c @@ -1183,11 +1183,12 @@ static int check_hotplug_memory_range(u64 start, u64 size) { u64 start_pfn = PFN_DOWN(start); u64 nr_pages = size >> PAGE_SHIFT; + u64 page_per_block = sections_per_block * PAGES_PER_SECTION; - /* Memory range must be aligned with section */ - if ((start_pfn & ~PAGE_SECTION_MASK) || - (nr_pages % PAGES_PER_SECTION) || (!nr_pages)) { - pr_err("Section-unaligned hotplug range: start 0x%llx, size 0x%llx\n", + /* Memory range must be aligned with memory_block */ + if ((start_pfn & (page_per_block - 1)) || + (nr_pages % page_per_block) || (!nr_pages)) { + pr_err("Memory_block-unaligned hotplug range: start 0x%llx, size 0x%llx\n", (unsigned long long)start, (unsigned long long)size); return -EINVAL; -- 2.11.0 -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>