From: David Woodhouse Date: Tue, 26 Aug 2008 14:29:22 +0000 (+0100) Subject: Fix userspace export of X-Git-Tag: v2.6.27-rc5~26 X-Git-Url: http://ftp.safe.ca/?a=commitdiff_plain;h=5770a3fb5f8544d40ae03b010318345cdd05d662;p=safe%2Fjmp%2Flinux-2.6 Fix userspace export of Including in the user-visible part of this header has caused build regressions with headers from 2.6.27-rc. Move it down to the #ifdef __KERNEL__ part, which is the only place it's needed. Move some other kernel-only things down there too, while we're at it. Signed-off-by: David Woodhouse Signed-off-by: Linus Torvalds --- diff --git a/include/linux/net.h b/include/linux/net.h index 4a9a30f..6dc14a2 100644 --- a/include/linux/net.h +++ b/include/linux/net.h @@ -18,16 +18,9 @@ #ifndef _LINUX_NET_H #define _LINUX_NET_H -#include #include -#include /* For O_CLOEXEC and O_NONBLOCK */ #include -struct poll_table_struct; -struct pipe_inode_info; -struct inode; -struct net; - #define NPROTO AF_MAX #define SYS_SOCKET 1 /* sys_socket(2) */ @@ -62,6 +55,13 @@ typedef enum { #ifdef __KERNEL__ #include #include +#include +#include /* For O_CLOEXEC and O_NONBLOCK */ + +struct poll_table_struct; +struct pipe_inode_info; +struct inode; +struct net; #define SOCK_ASYNC_NOSPACE 0 #define SOCK_ASYNC_WAITDATA 1