Skip to content

Commit

Permalink
ethtool: Move n-tuple capability check into set_flags
Browse files Browse the repository at this point in the history
set_flags should check if the underlying device supports
n-tuple filter programming before setting the device flags
on the netdevice.

Signed-off-by: Peter P Waskiewicz Jr <[email protected]>
Signed-off-by: Jeff Kirsher <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
ppwaskie authored and davem330 committed Feb 16, 2010
1 parent e858911 commit 0d643e1
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions net/core/ethtool.c
Original file line number Diff line number Diff line change
Expand Up @@ -134,15 +134,21 @@ u32 ethtool_op_get_flags(struct net_device *dev)

int ethtool_op_set_flags(struct net_device *dev, u32 data)
{
const struct ethtool_ops *ops = dev->ethtool_ops;

if (data & ETH_FLAG_LRO)
dev->features |= NETIF_F_LRO;
else
dev->features &= ~NETIF_F_LRO;

if (data & ETH_FLAG_NTUPLE)
if (data & ETH_FLAG_NTUPLE) {
if (!ops->set_rx_ntuple)
return -EOPNOTSUPP;
dev->features |= NETIF_F_NTUPLE;
else
} else {
/* safe to clear regardless */
dev->features &= ~NETIF_F_NTUPLE;
}

return 0;
}
Expand Down Expand Up @@ -318,9 +324,6 @@ static int ethtool_set_rx_ntuple(struct net_device *dev, void __user *useraddr)
struct ethtool_rx_ntuple_flow_spec_container *fsc = NULL;
int ret;

if (!ops->set_rx_ntuple)
return -EOPNOTSUPP;

if (!(dev->features & NETIF_F_NTUPLE))
return -EINVAL;

Expand Down

0 comments on commit 0d643e1

Please sign in to comment.