The patch titled hugetlb-add-phys-addr-to-struct-huge_bootmem_page-fix has been removed from the -mm tree. Its filename was hugetlb-add-phys-addr-to-struct-huge_bootmem_page-fix.patch This patch was dropped because it was folded into hugetlb-add-phys-addr-to-struct-huge_bootmem_page.patch The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: hugetlb-add-phys-addr-to-struct-huge_bootmem_page-fix From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Cc: Becky Bruce <beckyb@xxxxxxxxxxxxxxxxxxx> Cc: Benjamin Herrenschmidt <benh@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/hugetlb.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff -puN mm/hugetlb.c~hugetlb-add-phys-addr-to-struct-huge_bootmem_page-fix mm/hugetlb.c --- a/mm/hugetlb.c~hugetlb-add-phys-addr-to-struct-huge_bootmem_page-fix +++ a/mm/hugetlb.c @@ -1106,12 +1106,14 @@ static void __init gather_bootmem_preall list_for_each_entry(m, &huge_boot_pages, list) { struct hstate *h = m->hstate; + struct page *page; + #ifdef CONFIG_HIGHMEM - struct page *page = pfn_to_page(m->phys >> PAGE_SHIFT); + page = pfn_to_page(m->phys >> PAGE_SHIFT); free_bootmem_late((unsigned long)m, sizeof(struct huge_bootmem_page)); #else - struct page *page = virt_to_page(m); + page = virt_to_page(m); #endif __ClearPageReserved(page); WARN_ON(page_count(page) != 1); _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are origin.patch hugetlb-add-phys-addr-to-struct-huge_bootmem_page.patch mm-make-some-struct-pages-const-fix.patch mm-use-const-struct-page-for-r-o-page-flag-accessor-methods-checkpatch-fixes.patch xtensa-prevent-arbitrary-read-in-ptrace-fix.patch mm-extend-memory-hotplug-api-to-allow-memory-hotplug-in-virtual-machines-fix.patch pagewalk-add-locking-rule-comments-fix.patch mm-memoryc-remove-zap_block_size.patch mm-memblockc-avoid-abuse-of-red_inactive.patch mm-preallocate-page-before-lock_page-at-filemap-cow.patch mm-futex-fix-futex-writes-on-archs-with-sw-tracking-of-dirty-young-checkpatch-fixes.patch mm-futex-fix-futex-writes-on-archs-with-sw-tracking-of-dirty-young-fix.patch drivers-misc-add-support-the-fsa9480-usb-switch-fix.patch lib-make-_tolower-public-checkpatch-fixes.patch checkpatch-suggest-using-min_t-or-max_t-v2.patch checkpatch-add-a-prefer-__aligned-check.patch init-skip-calibration-delay-if-previously-done-fix.patch init-skip-calibration-delay-if-previously-done-fix-fix.patch init-skip-calibration-delay-if-previously-done-4.patch drivers-rtc-add-support-for-qualcomm-pmic8xxx-rtc-fix.patch drivers-connector-cn_procc-remove-unused-local.patch drivers-staging-gma500-psb_intel_displayc-fix-bad-udelay.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