[SPARC]: avoid CHILD_MAX and OPEN_MAX constants
authorRoland McGrath <roland@redhat.com>
Thu, 12 Apr 2007 20:13:42 +0000 (13:13 -0700)
committerDavid S. Miller <davem@davemloft.net>
Thu, 12 Apr 2007 20:13:42 +0000 (13:13 -0700)
commit1d51c69fb6e61054cd6cc485f9bef77d19d82751
treea21148d4bb8f98a152e038104f8e8fdbcb4d584d
parent2f3a2efd85b698e51e90f06a37d85066725fb4c4
[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>
arch/sparc/kernel/sys_sunos.c
arch/sparc64/kernel/sys_sunos32.c
arch/sparc64/solaris/misc.c