diff options
author | Roland McGrath <roland@redhat.com> | 2007-07-17 04:03:48 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-17 10:23:03 -0700 |
commit | c09edd6eba683741bb8aa8e388a2bfaf1c1a28f9 (patch) | |
tree | af9052388c6244b7bece50b23dae454482ecc501 /include/net/scm.h | |
parent | f4480240f700587c15507b7815e75989b16825b2 (diff) | |
download | linux-c09edd6eba683741bb8aa8e388a2bfaf1c1a28f9.tar.gz linux-c09edd6eba683741bb8aa8e388a2bfaf1c1a28f9.tar.bz2 linux-c09edd6eba683741bb8aa8e388a2bfaf1c1a28f9.zip |
avoid OPEN_MAX in SCM_MAX_FD
The OPEN_MAX constant is an arbitrary number with no useful relation to
anything. Nothing should be using it. SCM_MAX_FD is just an arbitrary
constant and it should be clear that its value is chosen in net/scm.h
and not actually derived from anything else meaningful in the system.
Signed-off-by: Roland McGrath <roland@redhat.com>
Cc: "David S. Miller" <davem@davemloft.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/net/scm.h')
-rw-r--r-- | include/net/scm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/scm.h b/include/net/scm.h index 5637d5e22d5f..423cb1d5ac25 100644 --- a/include/net/scm.h +++ b/include/net/scm.h @@ -8,7 +8,7 @@ /* Well, we should have at least one descriptor open * to accept passed FDs 8) */ -#define SCM_MAX_FD (OPEN_MAX-1) +#define SCM_MAX_FD 255 struct scm_fp_list { |