diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2007-02-14 00:34:11 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-14 08:09:59 -0800 |
commit | 1ff007eb8e8c7c44e9a384a67d0fdd0fd06ba811 (patch) | |
tree | 01ed52bee21a39302ccfd49315a79806506177c7 /include/linux/sysctl.h | |
parent | 805b5d5e063e7fde5e2eb724e3f4cb18e47cab19 (diff) | |
download | kernel_samsung_smdk4412-1ff007eb8e8c7c44e9a384a67d0fdd0fd06ba811.zip kernel_samsung_smdk4412-1ff007eb8e8c7c44e9a384a67d0fdd0fd06ba811.tar.gz kernel_samsung_smdk4412-1ff007eb8e8c7c44e9a384a67d0fdd0fd06ba811.tar.bz2 |
[PATCH] sysctl: allow sysctl_perm to be called from outside of sysctl.c
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/sysctl.h')
-rw-r--r-- | include/linux/sysctl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/sysctl.h b/include/linux/sysctl.h index 72ba58b..9698ac3 100644 --- a/include/linux/sysctl.h +++ b/include/linux/sysctl.h @@ -925,8 +925,10 @@ enum #include <linux/list.h> /* For the /proc/sys support */ +struct ctl_table; extern struct ctl_table_header *sysctl_head_next(struct ctl_table_header *prev); extern void sysctl_head_finish(struct ctl_table_header *prev); +extern int sysctl_perm(struct ctl_table *table, int op); extern void sysctl_init(void); |