diff options
Diffstat (limited to 'include/linux/socket.h')
| -rw-r--r-- | include/linux/socket.h | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/include/linux/socket.h b/include/linux/socket.h index ea50f4a65816..7ed4713d5337 100644 --- a/include/linux/socket.h +++ b/include/linux/socket.h @@ -207,8 +207,9 @@ struct ucred {  				 * PF_SMC protocol family that  				 * reuses AF_INET address family  				 */ +#define AF_XDP		44	/* XDP sockets			*/ -#define AF_MAX		44	/* For now.. */ +#define AF_MAX		45	/* For now.. */  /* Protocol families, same as address families. */  #define PF_UNSPEC	AF_UNSPEC @@ -257,6 +258,7 @@ struct ucred {  #define PF_KCM		AF_KCM  #define PF_QIPCRTR	AF_QIPCRTR  #define PF_SMC		AF_SMC +#define PF_XDP		AF_XDP  #define PF_MAX		AF_MAX  /* Maximum queue length specifiable by listen.  */ @@ -338,6 +340,7 @@ struct ucred {  #define SOL_NFC		280  #define SOL_KCM		281  #define SOL_TLS		282 +#define SOL_XDP		283  /* IPX options */  #define IPX_TYPE	1  |