aboutsummaryrefslogtreecommitdiffstats
path: root/net/core
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2009-06-09 00:18:51 -0700
committerDavid S. Miller <davem@davemloft.net>2009-06-09 00:18:51 -0700
commit4cf704fbea96075942bd033fd75aa4e76ae1c8a1 (patch)
treef529e1d2f441125c48f81cebf076a29be4e5ac6f /net/core
parentdatagram: Use frag list abstraction interfaces. (diff)
downloadlinux-dev-4cf704fbea96075942bd033fd75aa4e76ae1c8a1.tar.xz
linux-dev-4cf704fbea96075942bd033fd75aa4e76ae1c8a1.zip
net/core/dev.c: Use frag list abstraction interfaces.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core')
-rw-r--r--net/core/dev.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/core/dev.c b/net/core/dev.c
index 1f38401fc028..4913089c91dc 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -1820,7 +1820,7 @@ int dev_queue_xmit(struct sk_buff *skb)
if (netif_needs_gso(dev, skb))
goto gso;
- if (skb_shinfo(skb)->frag_list &&
+ if (skb_has_frags(skb) &&
!(dev->features & NETIF_F_FRAGLIST) &&
__skb_linearize(skb))
goto out_kfree_skb;
@@ -2407,7 +2407,7 @@ int dev_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
if (!(skb->dev->features & NETIF_F_GRO))
goto normal;
- if (skb_is_gso(skb) || skb_shinfo(skb)->frag_list)
+ if (skb_is_gso(skb) || skb_has_frags(skb))
goto normal;
rcu_read_lock();