diff options
| author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2013-05-01 08:47:44 -0700 | 
|---|---|---|
| committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2013-05-01 08:47:44 -0700 | 
| commit | bf61c8840efe60fd8f91446860b63338fb424158 (patch) | |
| tree | 7a71832407a4f0d6346db773343f4c3ae2257b19 /include/linux/socket.h | |
| parent | 5846115b30f3a881e542c8bfde59a699c1c13740 (diff) | |
| parent | 0c6a61657da78098472fd0eb71cc01f2387fa1bb (diff) | |
| download | olio-linux-3.10-bf61c8840efe60fd8f91446860b63338fb424158.tar.xz olio-linux-3.10-bf61c8840efe60fd8f91446860b63338fb424158.zip  | |
Merge branch 'next' into for-linus
Prepare first set of updates for 3.10 merge window.
Diffstat (limited to 'include/linux/socket.h')
| -rw-r--r-- | include/linux/socket.h | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/socket.h b/include/linux/socket.h index 9a546ff853d..2b9f74b0ffe 100644 --- a/include/linux/socket.h +++ b/include/linux/socket.h @@ -178,7 +178,8 @@ struct ucred {  #define AF_CAIF		37	/* CAIF sockets			*/  #define AF_ALG		38	/* Algorithm sockets		*/  #define AF_NFC		39	/* NFC sockets			*/ -#define AF_MAX		40	/* For now.. */ +#define AF_VSOCK	40	/* vSockets			*/ +#define AF_MAX		41	/* For now.. */  /* Protocol families, same as address families. */  #define PF_UNSPEC	AF_UNSPEC @@ -221,6 +222,7 @@ struct ucred {  #define PF_CAIF		AF_CAIF  #define PF_ALG		AF_ALG  #define PF_NFC		AF_NFC +#define PF_VSOCK	AF_VSOCK  #define PF_MAX		AF_MAX  /* Maximum queue length specifiable by listen.  */  |