aboutsummaryrefslogtreecommitdiffstats
path: root/net/unix/sysctl_net_unix.c
diff options
context:
space:
mode:
authorPavel Emelyanov <xemul@openvz.org>2007-12-01 07:40:40 -0500
committerDavid S. Miller <davem@davemloft.net>2008-01-28 17:55:21 -0500
commit97577e38284f48ca773392e2d401af2f6c95dc08 (patch)
treef744e46259cf06b13858f2965526d512308cb7da /net/unix/sysctl_net_unix.c
parentdd88590995de7c7ce108718a9ad52b3832e77814 (diff)
[UNIX]: Extend unix_sysctl_(un)register prototypes
Add the struct net * argument to both of them to use in the future. Also make the register one return an error code. It is useless right now, but will make the future patches much simpler. Signed-off-by: Pavel Emelyanov <xemul@openvz.org> Acked-by: Eric W. Biederman <ebiederm@xmission.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/unix/sysctl_net_unix.c')
-rw-r--r--net/unix/sysctl_net_unix.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/net/unix/sysctl_net_unix.c b/net/unix/sysctl_net_unix.c
index eb0bd57ebada..b2e0407e1b7b 100644
--- a/net/unix/sysctl_net_unix.c
+++ b/net/unix/sysctl_net_unix.c
@@ -48,12 +48,13 @@ static ctl_table unix_root_table[] = {
48 48
49static struct ctl_table_header * unix_sysctl_header; 49static struct ctl_table_header * unix_sysctl_header;
50 50
51void unix_sysctl_register(void) 51int unix_sysctl_register(struct net *net)
52{ 52{
53 unix_sysctl_header = register_sysctl_table(unix_root_table); 53 unix_sysctl_header = register_sysctl_table(unix_root_table);
54 return unix_sysctl_header == NULL ? -ENOMEM : 0;
54} 55}
55 56
56void unix_sysctl_unregister(void) 57void unix_sysctl_unregister(struct net *net)
57{ 58{
58 unregister_sysctl_table(unix_sysctl_header); 59 unregister_sysctl_table(unix_sysctl_header);
59} 60}