diff options
author | Susant Sahani <ssahani@users.noreply.github.com> | 2016-10-07 19:16:18 +0530 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2016-10-07 09:46:18 -0400 |
commit | 16441027352ba442c6664c03af852606035c4a45 (patch) | |
tree | 1ba5c2b10b0a8cd23924b313b5c067353bc23f01 /src/network/networkd-netdev-vxlan.h | |
parent | 171b53380085b1288b03b19a2b978f36a5c003d0 (diff) |
networkd: remote checksum offload for vxlan (#4110)
This patch adds support to remote checksum checksum offload to VXLAN.
This patch adds RemoteCheckSumTx and RemoteCheckSumRx vxlan configuration
to enable remote checksum offload for transmit and receive on the VXLAN tunnel.
Diffstat (limited to 'src/network/networkd-netdev-vxlan.h')
-rw-r--r-- | src/network/networkd-netdev-vxlan.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/network/networkd-netdev-vxlan.h b/src/network/networkd-netdev-vxlan.h index 4614c66fd1..3906820afb 100644 --- a/src/network/networkd-netdev-vxlan.h +++ b/src/network/networkd-netdev-vxlan.h @@ -50,6 +50,8 @@ struct VxLan { bool udpcsum; bool udp6zerocsumtx; bool udp6zerocsumrx; + bool remote_csum_tx; + bool remote_csum_rx; bool group_policy; struct ifla_vxlan_port_range port_range; |