The patch titled tiny sched_getaffinity cleanup has been removed from the -mm tree. Its filename was tiny-sched_getaffinity-cleanup.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: tiny sched_getaffinity cleanup From: Ulrich Drepper <drepper@xxxxxxxxxx> Unless I'm missing something quite tricky here's another tiny cleanup. The generated code is not affected (gcc is smart enough) but for people looking over the code it is just irritating to have the extra conditional. Signed-off-by: Ulrich Drepper <drepper@xxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/sched.c | 4 +--- 1 files changed, 1 insertion(+), 3 deletions(-) diff -puN kernel/sched.c~tiny-sched_getaffinity-cleanup kernel/sched.c --- a/kernel/sched.c~tiny-sched_getaffinity-cleanup +++ a/kernel/sched.c @@ -4466,10 +4466,8 @@ long sched_getaffinity(pid_t pid, cpumas out_unlock: read_unlock(&tasklist_lock); mutex_unlock(&sched_hotcpu_mutex); - if (retval) - return retval; - return 0; + return retval; } /** _ Patches currently in -mm which might be from drepper@xxxxxxxxxx are git-sched.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