The patch titled Subject: mm/sparse: use page_private() to get page->private value has been added to the -mm tree. Its filename is mm-sparse-use-page_private-to-get-page-private-value.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/mm-sparse-use-page_private-to-get-page-private-value.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/mm-sparse-use-page_private-to-get-page-private-value.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: Yasuaki Ishimatsu <yasu.isimatu@xxxxxxxxx> Subject: mm/sparse: use page_private() to get page->private value free_map_bootmem() uses page->private directly to set removing_section_nr argument. But to get page->private value, page_private() has been prepared. So free_map_bootmem() should use page_private() instead of page->private. Link: http://lkml.kernel.org/r/1d34eaa5-a506-8b7a-6471-490c345deef8@xxxxxxxxx Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@xxxxxxxxxxxxxx> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxxxxx> Cc: H. Peter Anvin <hpa@xxxxxxxxx> Cc: Dave Hansen <dave.hansen@xxxxxxxxxxxxxxx> Cc: Vlastimil Babka <vbabka@xxxxxxx> Cc: Mel Gorman <mgorman@xxxxxxxxxxxxxxxxxxx> Cc: Xishi Qiu <qiuxishi@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/sparse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN mm/sparse.c~mm-sparse-use-page_private-to-get-page-private-value mm/sparse.c --- a/mm/sparse.c~mm-sparse-use-page_private-to-get-page-private-value +++ a/mm/sparse.c @@ -667,7 +667,7 @@ static void free_map_bootmem(struct page BUG_ON(magic == NODE_INFO); maps_section_nr = pfn_to_section_nr(page_to_pfn(page)); - removing_section_nr = page->private; + removing_section_nr = page_private(page); /* * When this function is called, the removing section is _ Patches currently in -mm which might be from yasu.isimatu@xxxxxxxxx are mm-sparse-use-page_private-to-get-page-private-value.patch mm-memory_hotplug-set-magic-number-to-page-freelsit-instead-of-page-lrunext.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