The patch titled tiny sched_getaffinity cleanup has been added to the -mm tree. Its filename is tiny-sched_getaffinity-cleanup.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ 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 origin.patch cpu-online-file-permission.patch tiny-sched_getaffinity-cleanup.patch futex-pass-nr_wake2-to-futex_wake_op.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