diff options
author | Chris Leech <christopher.leech@intel.com> | 2009-02-27 14:06:43 -0800 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2009-03-13 15:10:23 -0500 |
commit | 43eb99c5b349b188f82725652f3d1018c619d682 (patch) | |
tree | b34aa54b7d54d2ed691fc7fd05e56ffa5b690c93 /drivers | |
parent | 211c738d86f3f423f1b218ab3a356c9538e38047 (diff) | |
download | op-kernel-dev-43eb99c5b349b188f82725652f3d1018c619d682.zip op-kernel-dev-43eb99c5b349b188f82725652f3d1018c619d682.tar.gz |
[SCSI] net: reclaim 8 upper bits of the netdev->features from GSO
Reclaim 8 upper bits of netdev->features from GSO.
Signed-off-by: Chris Leech <christopher.leech@intel.com>
Signed-off-by: Yi Zou <yi.zou@intel.com>
Acked-by: David Miller <davem@davemloft.net>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/xen-netfront.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/xen-netfront.c b/drivers/net/xen-netfront.c index cd6184e..2ce536f 100644 --- a/drivers/net/xen-netfront.c +++ b/drivers/net/xen-netfront.c @@ -1511,7 +1511,7 @@ static int xennet_set_tso(struct net_device *dev, u32 data) static void xennet_set_features(struct net_device *dev) { /* Turn off all GSO bits except ROBUST. */ - dev->features &= (1 << NETIF_F_GSO_SHIFT) - 1; + dev->features &= ~NETIF_F_GSO_MASK; dev->features |= NETIF_F_GSO_ROBUST; xennet_set_sg(dev, 0); |