diff options
| author | Arnaldo Carvalho de Melo <acme@parisc.kerneljanitors.org> | 2003-10-01 13:56:11 -0300 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.osdl.org> | 2003-10-01 13:56:11 -0300 |
| commit | 753d4a8b86fd83f742df403a9df72c3e0c9763f7 (patch) | |
| tree | a30a28192af3f241d48394a34a90f637cb09a59a /kernel/sysctl.c | |
| parent | cc5a187c18c4d0f2c746cb795e92ae230a3a369d (diff) | |
o kernel/ksyms.c: move relevant EXPORT_SYMBOLs to kernel/sysctl.c
Diffstat (limited to 'kernel/sysctl.c')
| -rw-r--r-- | kernel/sysctl.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c index 7648c165a86d..678bbd6f0d69 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c @@ -19,6 +19,7 @@ */ #include <linux/config.h> +#include <linux/module.h> #include <linux/mm.h> #include <linux/swap.h> #include <linux/slab.h> @@ -1994,3 +1995,19 @@ void unregister_sysctl_table(struct ctl_table_header * table) } #endif /* CONFIG_SYSCTL */ + +/* + * No sense putting this after each symbol definition, twice, + * exception granted :-) + */ +EXPORT_SYMBOL(proc_dointvec); +EXPORT_SYMBOL(proc_dointvec_jiffies); +EXPORT_SYMBOL(proc_dointvec_minmax); +EXPORT_SYMBOL(proc_dostring); +EXPORT_SYMBOL(proc_doulongvec_minmax); +EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax); +EXPORT_SYMBOL(register_sysctl_table); +EXPORT_SYMBOL(sysctl_intvec); +EXPORT_SYMBOL(sysctl_jiffies); +EXPORT_SYMBOL(sysctl_string); +EXPORT_SYMBOL(unregister_sysctl_table); |
