netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] net: allow multiple dev per napi with GRO
@ 2009-04-01 21:20 Stephen Hemminger
  2009-04-01 21:39 ` [PATCH 2/2] sky2: add GRO support Stephen Hemminger
  2009-04-02  8:08 ` [PATCH 1/2] net: allow multiple dev per napi with GRO David Miller
  0 siblings, 2 replies; 5+ messages in thread
From: Stephen Hemminger @ 2009-04-01 21:20 UTC (permalink / raw)
  To: Herbert Xu, David Miller; +Cc: netdev

GRO assumes that there is a one-to-one relationship between NAPI
structure and network device. Some devices like sky2 share multiple
devices on a single interrupt so only have one NAPI handler. Rather than
split GRO from NAPI, just have GRO assume if device changes that
it is a different flow.

Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>

--- a/net/core/dev.c	2009-04-01 12:02:12.381316147 -0700
+++ b/net/core/dev.c	2009-04-01 12:07:29.718192280 -0700
@@ -2472,8 +2472,9 @@ static int __napi_gro_receive(struct nap
 		return GRO_NORMAL;
 
 	for (p = napi->gro_list; p; p = p->next) {
-		NAPI_GRO_CB(p)->same_flow = !compare_ether_header(
-			skb_mac_header(p), skb_gro_mac_header(skb));
+		NAPI_GRO_CB(p)->same_flow = (p->dev == skb->dev)
+			&& !compare_ether_header(skb_mac_header(p),
+						 skb_gro_mac_header(skb));
 		NAPI_GRO_CB(p)->flush = 0;
 	}
 

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

end of thread, other threads:[~2009-04-02  8:28 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-01 21:20 [PATCH 1/2] net: allow multiple dev per napi with GRO Stephen Hemminger
2009-04-01 21:39 ` [PATCH 2/2] sky2: add GRO support Stephen Hemminger
2009-04-02  8:08   ` David Miller
2009-04-02  8:08 ` [PATCH 1/2] net: allow multiple dev per napi with GRO David Miller
2009-04-02  8:28   ` Herbert Xu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).