aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/af_unix.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/net/af_unix.h')
-rw-r--r--include/net/af_unix.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/net/af_unix.h b/include/net/af_unix.h
index a1c805d7f488..e0fba269d092 100644
--- a/include/net/af_unix.h
+++ b/include/net/af_unix.h
@@ -60,11 +60,11 @@ struct unix_sock {
60 60
61#ifdef CONFIG_SYSCTL 61#ifdef CONFIG_SYSCTL
62extern int sysctl_unix_max_dgram_qlen; 62extern int sysctl_unix_max_dgram_qlen;
63extern void unix_sysctl_register(void); 63extern int unix_sysctl_register(struct net *net);
64extern void unix_sysctl_unregister(void); 64extern void unix_sysctl_unregister(struct net *net);
65#else 65#else
66static inline void unix_sysctl_register(void) {} 66static inline int unix_sysctl_register(struct net *net) { return 0; }
67static inline void unix_sysctl_unregister(void) {} 67static inline void unix_sysctl_unregister(struct net *net) {}
68#endif 68#endif
69#endif 69#endif
70#endif 70#endif