The patch titled mm/hugetlb: don't crash when HPAGE_SHIFT is 0 has been removed from the -mm tree. Its filename was mm-hugetlb-dont-crash-when-hpage_shift-is-0.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: mm/hugetlb: don't crash when HPAGE_SHIFT is 0 From: Benjamin Herrenschmidt <benh@xxxxxxxxxxxxxxxxxxx> Some platform decide whether they support huge pages at boot time. On these, such as powerpc, HPAGE_SHIFT is a variable, not a constant, and is set to 0 when there is no such support. The patches to introduce multiple huge pages support broke that causing the kernel to crash at boot time on machines such as POWER3 which lack support for multiple page sizes. Signed-off-by: Benjamin Herrenschmidt <benh@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/hugetlb.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff -puN mm/hugetlb.c~mm-hugetlb-dont-crash-when-hpage_shift-is-0 mm/hugetlb.c --- a/mm/hugetlb.c~mm-hugetlb-dont-crash-when-hpage_shift-is-0 +++ a/mm/hugetlb.c @@ -1283,7 +1283,12 @@ module_exit(hugetlb_exit); static int __init hugetlb_init(void) { - BUILD_BUG_ON(HPAGE_SHIFT == 0); + /* Some platform decide whether they support huge pages at boot + * time. On these, such as powerpc, HPAGE_SHIFT is set to 0 when + * there is no such support + */ + if (HPAGE_SHIFT == 0) + return 0; if (!size_to_hstate(default_hstate_size)) { default_hstate_size = HPAGE_SIZE; _ Patches currently in -mm which might be from benh@xxxxxxxxxxxxxxxxxxx are origin.patch linux-next.patch powerpc-replace-__function__-with-__func__.patch powerpc-86xx-mpc8610_hpcd-add-watchdog-node.patch radeon-misc-corrections.patch radeonfb-give-i2c-buses-nicer-names.patch radeonfb-revert-fix-radeon-ddc-regression.patch gcov-architecture-specific-compile-flag-adjustments-powerpc-moved-stuff.patch powerpc-hugetlb-pgtable-cache-access-cleanup.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