diff options
author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2009-12-15 11:49:32 -0500 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2009-12-15 11:49:32 -0500 |
commit | 7547a3e8a43d31aaf91c2daf5f597e43212ccddf (patch) | |
tree | add99b58ac3b490f6ede666b9dbf2333d87e24fa /net/unix/sysctl_net_unix.c | |
parent | 0f5e182dff576e6f3cd9b805834f18d11f2882aa (diff) | |
parent | 3ea6b3d0e6d0ffd91c0f8cadeb69b7133c038b32 (diff) |
Merge commit 'linus' into next
Diffstat (limited to 'net/unix/sysctl_net_unix.c')
-rw-r--r-- | net/unix/sysctl_net_unix.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/net/unix/sysctl_net_unix.c b/net/unix/sysctl_net_unix.c index 83c093077ebc..708f5df6b7f0 100644 --- a/net/unix/sysctl_net_unix.c +++ b/net/unix/sysctl_net_unix.c | |||
@@ -16,19 +16,18 @@ | |||
16 | 16 | ||
17 | static ctl_table unix_table[] = { | 17 | static ctl_table unix_table[] = { |
18 | { | 18 | { |
19 | .ctl_name = NET_UNIX_MAX_DGRAM_QLEN, | ||
20 | .procname = "max_dgram_qlen", | 19 | .procname = "max_dgram_qlen", |
21 | .data = &init_net.unx.sysctl_max_dgram_qlen, | 20 | .data = &init_net.unx.sysctl_max_dgram_qlen, |
22 | .maxlen = sizeof(int), | 21 | .maxlen = sizeof(int), |
23 | .mode = 0644, | 22 | .mode = 0644, |
24 | .proc_handler = proc_dointvec | 23 | .proc_handler = proc_dointvec |
25 | }, | 24 | }, |
26 | { .ctl_name = 0 } | 25 | { } |
27 | }; | 26 | }; |
28 | 27 | ||
29 | static struct ctl_path unix_path[] = { | 28 | static struct ctl_path unix_path[] = { |
30 | { .procname = "net", .ctl_name = CTL_NET, }, | 29 | { .procname = "net", }, |
31 | { .procname = "unix", .ctl_name = NET_UNIX, }, | 30 | { .procname = "unix", }, |
32 | { }, | 31 | { }, |
33 | }; | 32 | }; |
34 | 33 | ||