diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2012-01-10 01:19:13 -0500 |
---|---|---|
committer | Eric W. Biederman <ebiederm@xmission.com> | 2012-01-24 19:37:55 -0500 |
commit | 97324cd804b7b9fb6044e114329335db79810425 (patch) | |
tree | ffebd82bb36069d38b9063328920f39434eb5155 /fs/proc/proc_sysctl.c | |
parent | a15e20982e2fbb06e85da584a0f150784042c17d (diff) |
sysctl: Implement retire_sysctl_set
This adds a small helper retire_sysctl_set to remove the intimate knowledge about
the how a sysctl_set is implemented from net/sysct_net.c
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Diffstat (limited to 'fs/proc/proc_sysctl.c')
-rw-r--r-- | fs/proc/proc_sysctl.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/proc/proc_sysctl.c b/fs/proc/proc_sysctl.c index f6aa75111b41..9d8223cd3655 100644 --- a/fs/proc/proc_sysctl.c +++ b/fs/proc/proc_sysctl.c | |||
@@ -1080,6 +1080,10 @@ void setup_sysctl_set(struct ctl_table_set *p, | |||
1080 | p->is_seen = is_seen; | 1080 | p->is_seen = is_seen; |
1081 | } | 1081 | } |
1082 | 1082 | ||
1083 | void retire_sysctl_set(struct ctl_table_set *set) | ||
1084 | { | ||
1085 | WARN_ON(!list_empty(&set->list)); | ||
1086 | } | ||
1083 | 1087 | ||
1084 | int __init proc_sys_init(void) | 1088 | int __init proc_sys_init(void) |
1085 | { | 1089 | { |