The patch titled hugetlb: fix section mismatch warning in hugetlb.c has been removed from the -mm tree. Its filename was hugetlb-fix-section-mismatch-warning-in-hugetlbc.patch This patch was dropped because it was nacked The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: hugetlb: fix section mismatch warning in hugetlb.c From: Rakib Mullick <rakib.mullick@xxxxxxxxx> Since hugetlb_sysfs_add_hstate()'s caller is __init and it isn't referencing from any other function, we can do this. Signed-off-by: Rakib Mullick <rakib.mullick@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/hugetlb.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff -puN mm/hugetlb.c~hugetlb-fix-section-mismatch-warning-in-hugetlbc mm/hugetlb.c --- a/mm/hugetlb.c~hugetlb-fix-section-mismatch-warning-in-hugetlbc +++ a/mm/hugetlb.c @@ -1650,7 +1650,7 @@ static void hugetlb_unregister_all_nodes * Register hstate attributes for a single node sysdev. * No-op if attributes already registered. */ -void hugetlb_register_node(struct node *node) +void __init hugetlb_register_node(struct node *node) { struct hstate *h; struct node_hstate *nhs = &node_hstates[node->sysdev.id]; @@ -1683,7 +1683,7 @@ void hugetlb_register_node(struct node * * sysdevs of nodes that have memory. All on-line nodes should have * registered their associated sysdev by this time. */ -static void hugetlb_register_all_nodes(void) +static void __init hugetlb_register_all_nodes(void) { int nid; @@ -1712,7 +1712,7 @@ static struct hstate *kobj_to_node_hstat static void hugetlb_unregister_all_nodes(void) { } -static void hugetlb_register_all_nodes(void) { } +static void __init hugetlb_register_all_nodes(void) { } #endif _ Patches currently in -mm which might be from rakib.mullick@xxxxxxxxx are linux-next.patch acpi-fix-unused-variable-warning-in-sbsc.patch hugetlb-fix-section-mismatch-warning-in-hugetlbc.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