diff options
author | Jeff Garzik <jeff@garzik.org> | 2006-03-11 17:47:20 -0500 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2006-03-11 17:47:20 -0500 |
commit | d7fc3ca1cd0ecce82263299c6b1631fc83b0ec79 (patch) | |
tree | a6471779a25cf2794542f9441213f5aa5f337f2f /net/unix/af_unix.c | |
parent | fbfda6e71bbdd3b4d41a56c3f20f31762c455a5e (diff) | |
parent | ed62178589929d248a0aaf4018ca3867e2f96d9d (diff) |
Merge branch 'master'
Diffstat (limited to 'net/unix/af_unix.c')
-rw-r--r-- | net/unix/af_unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/unix/af_unix.c b/net/unix/af_unix.c index 1b5989b1b670..c323cc6a28b0 100644 --- a/net/unix/af_unix.c +++ b/net/unix/af_unix.c @@ -547,7 +547,7 @@ static struct sock * unix_create1(struct socket *sock) struct sock *sk = NULL; struct unix_sock *u; - if (atomic_read(&unix_nr_socks) >= 2*files_stat.max_files) + if (atomic_read(&unix_nr_socks) >= 2*get_max_files()) goto out; sk = sk_alloc(PF_UNIX, GFP_KERNEL, &unix_proto, 1); |