diff options
| author | Tom Herbert <therbert@google.com> | 2014-10-03 18:48:09 -0400 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2014-10-03 19:53:33 -0400 |
| commit | 37dd0247797b168ad1cc7f5dbec825a1ee66535b (patch) | |
| tree | 93d4136738152f6e02ef98d23cbf537ca531fa9e /include/uapi/linux | |
| parent | efc98d08e1ec4fd131f794370b274dceaf32c958 (diff) | |
gue: Receive side for Generic UDP Encapsulation
This patch adds support receiving for GUE packets in the fou module. The
fou module now supports direct foo-over-udp (no encapsulation header)
and GUE. To support this a type parameter is added to the fou netlink
parameters.
For a GUE socket we define gue_udp_recv, gue_gro_receive, and
gue_gro_complete to handle the specifics of the GUE protocol. Most
of the code to manage and configure sockets is common with the fou.
Signed-off-by: Tom Herbert <therbert@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/uapi/linux')
| -rw-r--r-- | include/uapi/linux/fou.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/uapi/linux/fou.h b/include/uapi/linux/fou.h index e03376de453d..8df06894da23 100644 --- a/include/uapi/linux/fou.h +++ b/include/uapi/linux/fou.h | |||
| @@ -13,6 +13,7 @@ enum { | |||
| 13 | FOU_ATTR_PORT, /* u16 */ | 13 | FOU_ATTR_PORT, /* u16 */ |
| 14 | FOU_ATTR_AF, /* u8 */ | 14 | FOU_ATTR_AF, /* u8 */ |
| 15 | FOU_ATTR_IPPROTO, /* u8 */ | 15 | FOU_ATTR_IPPROTO, /* u8 */ |
| 16 | FOU_ATTR_TYPE, /* u8 */ | ||
| 16 | 17 | ||
| 17 | __FOU_ATTR_MAX, | 18 | __FOU_ATTR_MAX, |
| 18 | }; | 19 | }; |
| @@ -27,6 +28,12 @@ enum { | |||
| 27 | __FOU_CMD_MAX, | 28 | __FOU_CMD_MAX, |
| 28 | }; | 29 | }; |
| 29 | 30 | ||
| 31 | enum { | ||
| 32 | FOU_ENCAP_UNSPEC, | ||
| 33 | FOU_ENCAP_DIRECT, | ||
| 34 | FOU_ENCAP_GUE, | ||
| 35 | }; | ||
| 36 | |||
| 30 | #define FOU_CMD_MAX (__FOU_CMD_MAX - 1) | 37 | #define FOU_CMD_MAX (__FOU_CMD_MAX - 1) |
| 31 | 38 | ||
| 32 | #endif /* _UAPI_LINUX_FOU_H */ | 39 | #endif /* _UAPI_LINUX_FOU_H */ |
