From: Dave Young Date: Wed, 10 Mar 2010 23:24:10 +0000 (-0800) Subject: sysctl extern cleanup: poll X-Git-Tag: firefly_0821_release~9833^2~2610 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=9ff99339447de403a46be5e3f23d0c794d540b06;p=firefly-linux-kernel-4.4.55.git 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 Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/include/linux/poll.h b/include/linux/poll.h index 6673743946f7..600cc1fde64d 100644 --- a/include/linux/poll.h +++ b/include/linux/poll.h @@ -10,8 +10,10 @@ #include #include #include +#include #include +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