diff options
author | David Howells <dhowells@redhat.com> | 2012-10-13 05:46:48 -0400 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2012-10-13 05:46:48 -0400 |
commit | 607ca46e97a1b6594b29647d98a32d545c24bdff (patch) | |
tree | 30f4c0784bfddb57332cdc0678bd06d1e77fa185 /include/linux/socket.h | |
parent | 08cce05c5a91f5017f4edc9866cf026908c73f9f (diff) |
UAPI: (Scripted) Disintegrate include/linux
Signed-off-by: David Howells <dhowells@redhat.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Michael Kerrisk <mtk.manpages@gmail.com>
Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Acked-by: Dave Jones <davej@redhat.com>
Diffstat (limited to 'include/linux/socket.h')
-rw-r--r-- | include/linux/socket.h | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/include/linux/socket.h b/include/linux/socket.h index ba7b2e817cfa..9a546ff853dc 100644 --- a/include/linux/socket.h +++ b/include/linux/socket.h | |||
@@ -1,30 +1,13 @@ | |||
1 | #ifndef _LINUX_SOCKET_H | 1 | #ifndef _LINUX_SOCKET_H |
2 | #define _LINUX_SOCKET_H | 2 | #define _LINUX_SOCKET_H |
3 | 3 | ||
4 | /* | ||
5 | * Desired design of maximum size and alignment (see RFC2553) | ||
6 | */ | ||
7 | #define _K_SS_MAXSIZE 128 /* Implementation specific max size */ | ||
8 | #define _K_SS_ALIGNSIZE (__alignof__ (struct sockaddr *)) | ||
9 | /* Implementation specific desired alignment */ | ||
10 | |||
11 | typedef unsigned short __kernel_sa_family_t; | ||
12 | |||
13 | struct __kernel_sockaddr_storage { | ||
14 | __kernel_sa_family_t ss_family; /* address family */ | ||
15 | /* Following field(s) are implementation specific */ | ||
16 | char __data[_K_SS_MAXSIZE - sizeof(unsigned short)]; | ||
17 | /* space to achieve desired size, */ | ||
18 | /* _SS_MAXSIZE value minus size of ss_family */ | ||
19 | } __attribute__ ((aligned(_K_SS_ALIGNSIZE))); /* force desired alignment */ | ||
20 | |||
21 | #ifdef __KERNEL__ | ||
22 | 4 | ||
23 | #include <asm/socket.h> /* arch-dependent defines */ | 5 | #include <asm/socket.h> /* arch-dependent defines */ |
24 | #include <linux/sockios.h> /* the SIOCxxx I/O controls */ | 6 | #include <linux/sockios.h> /* the SIOCxxx I/O controls */ |
25 | #include <linux/uio.h> /* iovec support */ | 7 | #include <linux/uio.h> /* iovec support */ |
26 | #include <linux/types.h> /* pid_t */ | 8 | #include <linux/types.h> /* pid_t */ |
27 | #include <linux/compiler.h> /* __user */ | 9 | #include <linux/compiler.h> /* __user */ |
10 | #include <uapi/linux/socket.h> | ||
28 | 11 | ||
29 | struct pid; | 12 | struct pid; |
30 | struct cred; | 13 | struct cred; |
@@ -340,5 +323,4 @@ extern int __sys_recvmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen | |||
340 | unsigned int flags, struct timespec *timeout); | 323 | unsigned int flags, struct timespec *timeout); |
341 | extern int __sys_sendmmsg(int fd, struct mmsghdr __user *mmsg, | 324 | extern int __sys_sendmmsg(int fd, struct mmsghdr __user *mmsg, |
342 | unsigned int vlen, unsigned int flags); | 325 | unsigned int vlen, unsigned int flags); |
343 | #endif /* not kernel and not glibc */ | ||
344 | #endif /* _LINUX_SOCKET_H */ | 326 | #endif /* _LINUX_SOCKET_H */ |