The patch titled sched_domai: Don't use GFP_ATOMIC has been removed from the -mm tree. Its filename is sched_domain-dont-use-gfp_atomic.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: sched_domai: Don't use GFP_ATOMIC From: Srivatsa Vaddagiri <vatsa@xxxxxxxxxx> Replace GFP_ATOMIC allocation for sched_group_nodes with GFP_KERNEL based allocation. Signed-off-by: Srivatsa Vaddagiri <vatsa@xxxxxxxxxx Cc: Nick Piggin <nickpiggin@xxxxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Cc: "Siddha, Suresh B" <suresh.b.siddha@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- kernel/sched.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN kernel/sched.c~sched_domain-dont-use-gfp_atomic kernel/sched.c --- a/kernel/sched.c~sched_domain-dont-use-gfp_atomic +++ a/kernel/sched.c @@ -5880,7 +5880,7 @@ static int build_sched_domains(const cpu * Allocate the per-node list of sched groups */ sched_group_nodes = kzalloc(sizeof(struct sched_group*)*MAX_NUMNODES, - GFP_ATOMIC); + GFP_KERNEL); if (!sched_group_nodes) { printk(KERN_WARNING "Can not alloc sched group node list\n"); return -ENOMEM; _ Patches currently in -mm which might be from vatsa@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