diff options
| author | Jesse Gross <jesse@nicira.com> | 2011-01-09 06:23:32 +0000 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2011-01-09 23:35:34 -0800 | 
| commit | fc741216db156994c554ac31c1151fe0e00d8f0e (patch) | |
| tree | 692c6278f1c20e4452620adee1ea3cd05d878819 /drivers/net/xen-netfront.c | |
| parent | f01a5236bd4b140198fbcc550f085e8361fd73fa (diff) | |
| download | olio-linux-3.10-fc741216db156994c554ac31c1151fe0e00d8f0e.tar.xz olio-linux-3.10-fc741216db156994c554ac31c1151fe0e00d8f0e.zip  | |
net offloading: Pass features into netif_needs_gso().
Now that there is a single function that can compute the device
features relevant to a packet, we don't want to run it for each
offload.  This converts netif_needs_gso() to take the features
of the device, rather than computing them itself.
Signed-off-by: Jesse Gross <jesse@nicira.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/xen-netfront.c')
| -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 cdbeec9f83e..546de574982 100644 --- a/drivers/net/xen-netfront.c +++ b/drivers/net/xen-netfront.c @@ -488,7 +488,7 @@ static int xennet_start_xmit(struct sk_buff *skb, struct net_device *dev)  	if (unlikely(!netif_carrier_ok(dev) ||  		     (frags > 1 && !xennet_can_sg(dev)) || -		     netif_needs_gso(dev, skb))) { +		     netif_needs_gso(skb, netif_skb_features(skb)))) {  		spin_unlock_irq(&np->tx_lock);  		goto drop;  	}  |