The patch titled hugetlb: remove unnecessary nid initialization has been removed from the -mm tree. Its filename was hugetlb-remove-unnecessary-nid-initialization.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: hugetlb: remove unnecessary nid initialization From: Nishanth Aravamudan <nacc@xxxxxxxxxx> nid is initialized to numa_node_id() but will either be overwritten in the loop or not used in the conditional. So remove the initialization. Signed-off-by: Nishanth Aravamudan <nacc@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/hugetlb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN mm/hugetlb.c~hugetlb-remove-unnecessary-nid-initialization mm/hugetlb.c --- a/mm/hugetlb.c~hugetlb-remove-unnecessary-nid-initialization +++ a/mm/hugetlb.c @@ -66,7 +66,7 @@ static void enqueue_huge_page(struct pag static struct page *dequeue_huge_page(struct vm_area_struct *vma, unsigned long address) { - int nid = numa_node_id(); + int nid; struct page *page = NULL; struct zonelist *zonelist = huge_zonelist(vma, address); struct zone **z; _ Patches currently in -mm which might be from nacc@xxxxxxxxxx are origin.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