diff options
author | Susant Sahani <ssahani@gmail.com> | 2015-07-14 13:55:52 +0530 |
---|---|---|
committer | Susant Sahani <susant@redhat.com> | 2015-07-14 14:10:56 +0530 |
commit | f5f07dbf06f6df9d12e092c05ad8cfbe244d203f (patch) | |
tree | d2a371bb533afb8a057dffe09ae496ac79e417ee /src/network/networkd-netdev-tuntap.h | |
parent | ff89f8b917a83a3fc0dc3ad0961c3bc953f78e8f (diff) |
networkd: tap add support for vnet_hdr
This patch adds support to configure IFF_VNET_HDR flag
for a tap device. It allows whether sending and receiving
large pass larger (GSO) packets. This greatly increases the
achievable throughput.
Diffstat (limited to 'src/network/networkd-netdev-tuntap.h')
-rw-r--r-- | src/network/networkd-netdev-tuntap.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/network/networkd-netdev-tuntap.h b/src/network/networkd-netdev-tuntap.h index b804875bbb..29f8bb0ea5 100644 --- a/src/network/networkd-netdev-tuntap.h +++ b/src/network/networkd-netdev-tuntap.h @@ -33,6 +33,7 @@ struct TunTap { bool one_queue; bool multi_queue; bool packet_info; + bool vnet_hdr; }; extern const NetDevVTable tun_vtable; |