Commit 795a05c1 authored by Joe Stringer's avatar Joe Stringer Committed by David S. Miller
Browse files

qlcnic: Implement ndo_gso_check()



Use vxlan_gso_check() to advertise offload support for this NIC.

Signed-off-by: default avatarJoe Stringer <joestringer@nicira.com>
Acked-by: default avatarShahed Shaikh <shahed.shaikh@qlogic.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 956bdab2
Loading
Loading
Loading
Loading
+6 −0
Original line number Original line Diff line number Diff line
@@ -503,6 +503,11 @@ static void qlcnic_del_vxlan_port(struct net_device *netdev,


	adapter->flags |= QLCNIC_DEL_VXLAN_PORT;
	adapter->flags |= QLCNIC_DEL_VXLAN_PORT;
}
}

static bool qlcnic_gso_check(struct sk_buff *skb, struct net_device *dev)
{
	return vxlan_gso_check(skb);
}
#endif
#endif


static const struct net_device_ops qlcnic_netdev_ops = {
static const struct net_device_ops qlcnic_netdev_ops = {
@@ -526,6 +531,7 @@ static const struct net_device_ops qlcnic_netdev_ops = {
#ifdef CONFIG_QLCNIC_VXLAN
#ifdef CONFIG_QLCNIC_VXLAN
	.ndo_add_vxlan_port	= qlcnic_add_vxlan_port,
	.ndo_add_vxlan_port	= qlcnic_add_vxlan_port,
	.ndo_del_vxlan_port	= qlcnic_del_vxlan_port,
	.ndo_del_vxlan_port	= qlcnic_del_vxlan_port,
	.ndo_gso_check		= qlcnic_gso_check,
#endif
#endif
#ifdef CONFIG_NET_POLL_CONTROLLER
#ifdef CONFIG_NET_POLL_CONTROLLER
	.ndo_poll_controller = qlcnic_poll_controller,
	.ndo_poll_controller = qlcnic_poll_controller,