The patch titled Subject: mm: fix mixed zone detection in devm_memremap_pages has been added to the -mm tree. Its filename is mm-fix-mixed-zone-detection-in-devm_memremap_pages.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/mm-fix-mixed-zone-detection-in-devm_memremap_pages.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/mm-fix-mixed-zone-detection-in-devm_memremap_pages.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Dan Williams <dan.j.williams@xxxxxxxxx> Subject: mm: fix mixed zone detection in devm_memremap_pages The check for whether we overlap "System RAM" needs to be done at section granularity. For example a system with the following mapping: 100000000-37bffffff : System RAM 37c000000-837ffffff : Persistent Memory ...is unable to use devm_memremap_pages() as it would result in two zones colliding within a given section. Signed-off-by: Dan Williams <dan.j.williams@xxxxxxxxx> Cc: Ross Zwisler <ross.zwisler@xxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/memremap.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff -puN kernel/memremap.c~mm-fix-mixed-zone-detection-in-devm_memremap_pages kernel/memremap.c --- a/kernel/memremap.c~mm-fix-mixed-zone-detection-in-devm_memremap_pages +++ a/kernel/memremap.c @@ -270,9 +270,10 @@ struct dev_pagemap *find_dev_pagemap(res void *devm_memremap_pages(struct device *dev, struct resource *res, struct percpu_ref *ref, struct vmem_altmap *altmap) { - int is_ram = region_intersects(res->start, resource_size(res), - "System RAM"); - resource_size_t key, align_start, align_size, align_end; + resource_size_t align_start = res->start & ~(SECTION_SIZE - 1); + resource_size_t align_size = ALIGN(resource_size(res), SECTION_SIZE); + int is_ram = region_intersects(align_start, align_size, "System RAM"); + resource_size_t key, align_end; struct dev_pagemap *pgmap; struct page_map *page_map; unsigned long pfn; @@ -314,8 +315,6 @@ void *devm_memremap_pages(struct device mutex_lock(&pgmap_lock); error = 0; - align_start = res->start & ~(SECTION_SIZE - 1); - align_size = ALIGN(resource_size(res), SECTION_SIZE); align_end = align_start + align_size - 1; for (key = align_start; key <= align_end; key += SECTION_SIZE) { struct dev_pagemap *dup; _ Patches currently in -mm which might be from dan.j.williams@xxxxxxxxx are list-kill-list_force_poison.patch libnvdimm-pmem-fix-pfn-support-for-section-misaligned-namespaces.patch mm-fix-mixed-zone-detection-in-devm_memremap_pages.patch mm-config_nr_zones_extended.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html