diff options
| author | Roland McGrath <roland@redhat.com> | 2007-04-12 16:13:42 -0400 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2007-04-12 16:13:42 -0400 |
| commit | 1d51c69fb6e61054cd6cc485f9bef77d19d82751 (patch) | |
| tree | a21148d4bb8f98a152e038104f8e8fdbcb4d584d /arch/sparc | |
| parent | 2f3a2efd85b698e51e90f06a37d85066725fb4c4 (diff) | |
[SPARC]: avoid CHILD_MAX and OPEN_MAX constants
I don't figure anyone really cares about SunOS syscall emulation, and I
certainly don't. But I'm getting rid of uses of the OPEN_MAX and CHILD_MAX
compile-time constant, and these are almost the only ones. OPEN_MAX is a
bogus constant with no meaning about anything. The RLIMIT_NOFILE resource
limit is what sysconf (_SC_OPEN_MAX) actually wants to return.
The CHILD_MAX cases weren't actually using anything I want to get rid of,
but I noticed that they are there and are wrong too. The CHILD_MAX value
is not really unlimited as a -1 return from sysconf indicates. The
RLIMIT_NPROC resource limit is what sysconf (_SC_CHILD_MAX) wants to return.
Signed-off-by: Roland McGrath <roland@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc')
| -rw-r--r-- | arch/sparc/kernel/sys_sunos.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sparc/kernel/sys_sunos.c b/arch/sparc/kernel/sys_sunos.c index da6606f0cffc..f807172cab0e 100644 --- a/arch/sparc/kernel/sys_sunos.c +++ b/arch/sparc/kernel/sys_sunos.c | |||
| @@ -910,7 +910,7 @@ asmlinkage long sunos_sysconf (int name) | |||
| 910 | ret = ARG_MAX; | 910 | ret = ARG_MAX; |
| 911 | break; | 911 | break; |
| 912 | case _SC_CHILD_MAX: | 912 | case _SC_CHILD_MAX: |
| 913 | ret = -1; /* no limit */ | 913 | ret = current->signal->rlim[RLIMIT_NPROC].rlim_cur; |
| 914 | break; | 914 | break; |
| 915 | case _SC_CLK_TCK: | 915 | case _SC_CLK_TCK: |
| 916 | ret = HZ; | 916 | ret = HZ; |
| @@ -919,7 +919,7 @@ asmlinkage long sunos_sysconf (int name) | |||
| 919 | ret = NGROUPS_MAX; | 919 | ret = NGROUPS_MAX; |
| 920 | break; | 920 | break; |
| 921 | case _SC_OPEN_MAX: | 921 | case _SC_OPEN_MAX: |
| 922 | ret = OPEN_MAX; | 922 | ret = current->signal->rlim[RLIMIT_NOFILE].rlim_cur; |
| 923 | break; | 923 | break; |
| 924 | case _SC_JOB_CONTROL: | 924 | case _SC_JOB_CONTROL: |
| 925 | ret = 1; /* yes, we do support job control */ | 925 | ret = 1; /* yes, we do support job control */ |
