diff options
author | Steffen Klassert <steffen.klassert@secunet.com> | 2017-04-14 11:05:36 +0300 |
---|---|---|
committer | Steffen Klassert <steffen.klassert@secunet.com> | 2017-04-14 11:05:36 +0300 |
commit | c7ef8f0c020ac43c8a692bf989017c06ab1fdf0f (patch) | |
tree | 8ff1fd1e7fca430750d2dba917bdf63973d46d3b /include/linux/skbuff.h | |
parent | f221dcd91d20cdcb893cf6e9c8894b7d6c97d649 (diff) | |
download | linux-c7ef8f0c020ac43c8a692bf989017c06ab1fdf0f.tar.xz |
net: Add ESP offload features
This patch adds netdev features to configure IPsec offloads.
Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
Diffstat (limited to 'include/linux/skbuff.h')
-rw-r--r-- | include/linux/skbuff.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index 741d75cfc686..81ef53f06534 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h @@ -492,6 +492,8 @@ enum { SKB_GSO_TUNNEL_REMCSUM = 1 << 14, SKB_GSO_SCTP = 1 << 15, + + SKB_GSO_ESP = 1 << 16, }; #if BITS_PER_LONG > 32 |