aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorEric Van Hensbergen <ericvh@ericvh-laptop.(none)>2007-10-17 15:35:15 -0400
committerEric Van Hensbergen <ericvh@ericvh-desktop.austin.ibm.com>2007-10-17 15:35:15 -0400
commit982c37cfb6e61c0e64634abc2e305d757c1405b2 (patch)
tree084d81419cde8c6cd807d1a909ff413e5589c2ed /include
parentfb0466c3ae7f1c73f70072af8fd27ac166908a2f (diff)
9p: remove sysctl
A sysctl method was added to enable and disable debugging levels. After further review, it was decided that there are better approaches to doing this and the sysctl methodology isn't really desirable. This patch removes the sysctl code from 9p. Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/net/9p/9p.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/include/net/9p/9p.h b/include/net/9p/9p.h
index 7a448a30e39b..686425a97b0f 100644
--- a/include/net/9p/9p.h
+++ b/include/net/9p/9p.h
@@ -415,18 +415,4 @@ int p9_idpool_check(int id, struct p9_idpool *p);
415 415
416int p9_error_init(void); 416int p9_error_init(void);
417int p9_errstr2errno(char *, int); 417int p9_errstr2errno(char *, int);
418
419#ifdef CONFIG_SYSCTL
420int __init p9_sysctl_register(void);
421void __exit p9_sysctl_unregister(void);
422#else
423static inline int p9_sysctl_register(void)
424{
425 return 0;
426}
427static inline void p9_sysctl_unregister(void)
428{
429}
430#endif
431
432#endif /* NET_9P_H */ 418#endif /* NET_9P_H */