aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>2010-03-12 02:15:36 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2010-04-26 10:47:53 -0400
commit4eda4e44c72f3594196db58e9bf25055f2156547 (patch)
tree8d15a7169eb5a0724942d166142faa1405846fe1
parente5f509bf8e83b274b464ea02d79a1bdc648ea3ba (diff)
sched: sched_getaffinity(): Allow less than NR_CPUS length
commit cd3d8031eb4311e516329aee03c79a08333141f1 upstream. [ Note, this commit changes the syscall ABI for > 1024 CPUs systems. ] Recently, some distro decided to use NR_CPUS=4096 for mysterious reasons. Unfortunately, glibc sched interface has the following definition: # define __CPU_SETSIZE 1024 # define __NCPUBITS (8 * sizeof (__cpu_mask)) typedef unsigned long int __cpu_mask; typedef struct { __cpu_mask __bits[__CPU_SETSIZE / __NCPUBITS]; } cpu_set_t; It mean, if NR_CPUS is bigger than 1024, cpu_set_t makes an ABI issue ... More recently, Sharyathi Nagesh reported following test program makes misterious syscall failure: ----------------------------------------------------------------------- #define _GNU_SOURCE #include<stdio.h> #include<errno.h> #include<sched.h> int main() { cpu_set_t set; if (sched_getaffinity(0, sizeof(cpu_set_t), &set) < 0) printf("\n Call is failing with:%d", errno); } ----------------------------------------------------------------------- Because the kernel assumes len argument of sched_getaffinity() is bigger than NR_CPUS. But now it is not correct. Now we are faced with the following annoying dilemma, due to the limitations of the glibc interface built in years ago: (1) if we change glibc's __CPU_SETSIZE definition, we lost binary compatibility of _all_ application. (2) if we don't change it, we also lost binary compatibility of Sharyathi's use case. Then, I would propse to change the rule of the len argument of sched_getaffinity(). Old: len should be bigger than NR_CPUS New: len should be bigger than maximum possible cpu id This creates the following behavior: (A) In the real 4096 cpus machine, the above test program still return -EINVAL. (B) NR_CPUS=4096 but the machine have less than 1024 cpus (almost all machines in the world), the above can run successfully. Fortunatelly, BIG SGI machine is mainly used for HPC use case. It means they can rebuild their programs. IOW we hope they are not annoyed by this issue ... Reported-by: Sharyathi Nagesh <sharyath@in.ibm.com> Signed-off-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com> Acked-by: Ulrich Drepper <drepper@redhat.com> Acked-by: Peter Zijlstra <peterz@infradead.org> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Jack Steiner <steiner@sgi.com> Cc: Russ Anderson <rja@sgi.com> Cc: Mike Travis <travis@sgi.com> LKML-Reference: <20100312161316.9520.A69D9226@jp.fujitsu.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r--kernel/sched.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/kernel/sched.c b/kernel/sched.c
index 7ca934588ec4..c89db3bbd01f 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -6717,7 +6717,9 @@ SYSCALL_DEFINE3(sched_getaffinity, pid_t, pid, unsigned int, len,
6717 int ret; 6717 int ret;
6718 cpumask_var_t mask; 6718 cpumask_var_t mask;
6719 6719
6720 if (len < cpumask_size()) 6720 if (len < nr_cpu_ids)
6721 return -EINVAL;
6722 if (len & (sizeof(unsigned long)-1))
6721 return -EINVAL; 6723 return -EINVAL;
6722 6724
6723 if (!alloc_cpumask_var(&mask, GFP_KERNEL)) 6725 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
@@ -6725,10 +6727,12 @@ SYSCALL_DEFINE3(sched_getaffinity, pid_t, pid, unsigned int, len,
6725 6727
6726 ret = sched_getaffinity(pid, mask); 6728 ret = sched_getaffinity(pid, mask);
6727 if (ret == 0) { 6729 if (ret == 0) {
6728 if (copy_to_user(user_mask_ptr, mask, cpumask_size())) 6730 int retlen = min(len, cpumask_size());
6731
6732 if (copy_to_user(user_mask_ptr, mask, retlen))
6729 ret = -EFAULT; 6733 ret = -EFAULT;
6730 else 6734 else
6731 ret = cpumask_size(); 6735 ret = retlen;
6732 } 6736 }
6733 free_cpumask_var(mask); 6737 free_cpumask_var(mask);
6734 6738