diff options
author | Dave Young <hidave.darkstar@gmail.com> | 2010-03-10 15:24:10 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-03-12 15:53:11 -0800 |
commit | 9ff99339447de403a46be5e3f23d0c794d540b06 (patch) | |
tree | 8668d1b54543e19a42550e7f7332444e68661ec6 /include/linux/poll.h | |
parent | 2edf5e49800846a2b2b6461d99cdae18067c440f (diff) | |
download | linux-3.10-9ff99339447de403a46be5e3f23d0c794d540b06.tar.gz linux-3.10-9ff99339447de403a46be5e3f23d0c794d540b06.tar.bz2 linux-3.10-9ff99339447de403a46be5e3f23d0c794d540b06.zip |
sysctl extern cleanup: poll
Extern declarations in sysctl.c should be moved to their own header file,
and then include them in relavant .c files.
Move epoll_table extern declaration to linux/poll.h
Signed-off-by: Dave Young <hidave.darkstar@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/poll.h')
-rw-r--r-- | include/linux/poll.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/poll.h b/include/linux/poll.h index 6673743946f..600cc1fde64 100644 --- a/include/linux/poll.h +++ b/include/linux/poll.h @@ -10,8 +10,10 @@ #include <linux/wait.h> #include <linux/string.h> #include <linux/fs.h> +#include <linux/sysctl.h> #include <asm/uaccess.h> +extern struct ctl_table epoll_table[]; /* for sysctl */ /* ~832 bytes of stack space used max in sys_select/sys_poll before allocating additional memory. */ #define MAX_STACK_ALLOC 832 |