aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/netdev_features.h
diff options
context:
space:
mode:
authorPravin B Shelar <pshelar@nicira.com>2014-07-17 15:14:15 -0700
committerPravin B Shelar <pshelar@nicira.com>2014-07-24 01:15:04 -0700
commitf6eec614d2252a99b861e288b6301599d2d58da4 (patch)
tree1537a6bec17767f8ab2934736c0ace747b2496f8 /include/linux/netdev_features.h
parentopenvswitch: Allow each vport to have an array of 'port_id's. (diff)
downloadlinux-dev-f6eec614d2252a99b861e288b6301599d2d58da4.tar.xz
linux-dev-f6eec614d2252a99b861e288b6301599d2d58da4.zip
openvswitch: Enable tunnel GSO for OVS bridge.
Following patch enables all available tunnel GSO features for OVS bridge device so that ovs can use hardware offloads available to underling device. Signed-off-by: Pravin B Shelar <pshelar@nicira.com> Acked-by: Andy Zhou <azhou@nicira.com>
Diffstat (limited to 'include/linux/netdev_features.h')
-rw-r--r--include/linux/netdev_features.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/linux/netdev_features.h b/include/linux/netdev_features.h
index d99800cbdcf3..dcfdecbfa0b7 100644
--- a/include/linux/netdev_features.h
+++ b/include/linux/netdev_features.h
@@ -176,4 +176,12 @@ enum {
NETIF_F_HW_VLAN_STAG_RX | \
NETIF_F_HW_VLAN_STAG_TX)
+#define NETIF_F_GSO_ENCAP_ALL (NETIF_F_GSO_GRE | \
+ NETIF_F_GSO_GRE_CSUM | \
+ NETIF_F_GSO_IPIP | \
+ NETIF_F_GSO_SIT | \
+ NETIF_F_GSO_UDP_TUNNEL | \
+ NETIF_F_GSO_UDP_TUNNEL_CSUM | \
+ NETIF_F_GSO_MPLS)
+
#endif /* _LINUX_NETDEV_FEATURES_H */