All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] offloading: Make scatter/gather more tolerant of vlans.
@ 2010-10-29 22:14 Jesse Gross
  2010-10-29 22:14 ` [PATCH 2/3] offloading: Support multiple vlan tags in GSO Jesse Gross
                   ` (3 more replies)
  0 siblings, 4 replies; 11+ messages in thread
From: Jesse Gross @ 2010-10-29 22:14 UTC (permalink / raw)
  To: David Miller; +Cc: netdev, Ben Hutchings

When checking if it is necessary to linearize a packet, we currently
use vlan_features if the packet contains either an in-band or out-
of-band vlan tag.  However, in-band tags aren't special in any way
for scatter/gather since they are part of the packet buffer and are
simply more data to DMA.  Therefore, only use vlan_features for out-
of-band tags, which could potentially have some interaction with
scatter/gather.

Signed-off-by: Jesse Gross <jesse@nicira.com>
CC: Ben Hutchings <bhutchings@solarflare.com>
---
 net/core/dev.c |   19 ++++++++++++-------
 1 files changed, 12 insertions(+), 7 deletions(-)

diff --git a/net/core/dev.c b/net/core/dev.c
index 35dfb83..d21d655 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -1977,15 +1977,20 @@ static inline void skb_orphan_try(struct sk_buff *skb)
 static inline int skb_needs_linearize(struct sk_buff *skb,
 				      struct net_device *dev)
 {
-	int features = dev->features;
+	if (skb_is_nonlinear(skb)) {
+		int features = dev->features;
 
-	if (skb->protocol == htons(ETH_P_8021Q) || vlan_tx_tag_present(skb))
-		features &= dev->vlan_features;
+		if (vlan_tx_tag_present(skb))
+			features &= dev->vlan_features;
 
-	return skb_is_nonlinear(skb) &&
-	       ((skb_has_frag_list(skb) && !(features & NETIF_F_FRAGLIST)) ||
-		(skb_shinfo(skb)->nr_frags && (!(features & NETIF_F_SG) ||
-					      illegal_highdma(dev, skb))));
+		return (skb_has_frag_list(skb) &&
+			!(features & NETIF_F_FRAGLIST)) ||
+			(skb_shinfo(skb)->nr_frags &&
+			(!(features & NETIF_F_SG) ||
+			illegal_highdma(dev, skb)));
+	}
+
+	return 0;
 }
 
 int dev_hard_start_xmit(struct sk_buff *skb, struct net_device *dev,
-- 
1.7.1


^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2011-01-09 16:00 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-10-29 22:14 [PATCH 1/3] offloading: Make scatter/gather more tolerant of vlans Jesse Gross
2010-10-29 22:14 ` [PATCH 2/3] offloading: Support multiple vlan tags in GSO Jesse Gross
2010-11-01 20:33   ` Ben Hutchings
2010-11-02  1:31     ` Jesse Gross
2010-11-15 17:23   ` David Miller
2010-10-29 22:14 ` [PATCH 3/3] offloading: Force software GSO for multiple vlan tags Jesse Gross
2010-11-15 17:23   ` David Miller
2011-01-07 19:36   ` Michał Mirosław
2011-01-09 16:00     ` Jesse Gross
2010-11-01 20:06 ` [PATCH 1/3] offloading: Make scatter/gather more tolerant of vlans Ben Hutchings
2010-11-15 17:23 ` David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.