netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next-2.6] net: Increase NET_SKB_PAD to 64 bytes
@ 2010-05-05  5:24 Eric Dumazet
  2010-05-07  5:02 ` David Miller
  0 siblings, 1 reply; 13+ messages in thread
From: Eric Dumazet @ 2010-05-05  5:24 UTC (permalink / raw)
  To: David Miller; +Cc: netdev, jamal, Tom Herbert

eth_type_trans() & get_rps_cpus() currently need two 64bytes cache lines
in packet to compute rxhash.

Increasing NET_SKB_PAD from 32 to 64 reduces the need to one cache line
only, and makes RPS faster.

NET_IP_ALIGN(2) + ethernet_header(14) + IP_header(20/40) + ports(8)

Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
---
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h
index 746a652..fe5798b 100644
--- a/include/linux/skbuff.h
+++ b/include/linux/skbuff.h
@@ -1356,9 +1356,12 @@ static inline int skb_network_offset(const struct sk_buff *skb)
  *
  * Various parts of the networking layer expect at least 32 bytes of
  * headroom, you should not reduce this.
+ * With RPS, we raised NET_SKB_PAD to 64 so that get_rps_cpus() fetches span
+ * a 64 bytes aligned block to fit modern (>= 64 bytes) cache line sizes
+ * NET_IP_ALIGN(2) + ethernet_header(14) + IP_header(20/40) + ports(8)
  */
 #ifndef NET_SKB_PAD
-#define NET_SKB_PAD	32
+#define NET_SKB_PAD	64
 #endif
 
 extern int ___pskb_trim(struct sk_buff *skb, unsigned int len);



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

end of thread, other threads:[~2010-05-07 10:28 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-05  5:24 [PATCH net-next-2.6] net: Increase NET_SKB_PAD to 64 bytes Eric Dumazet
2010-05-07  5:02 ` David Miller
2010-05-07  5:15   ` Eric Dumazet
2010-05-07  5:28     ` [microblaze-uclinux] " John Williams
2010-05-07  6:29       ` David Miller
2010-05-07  7:53     ` Michal Simek
2010-05-07  8:32       ` David Miller
2010-05-07  9:02         ` Michal Simek
2010-05-07  9:48         ` Michal Simek
2010-05-07  9:55           ` Eric Dumazet
2010-05-07 10:09             ` Michal Simek
2010-05-07 10:27               ` Eric Dumazet
2010-05-07  9:56           ` David Miller

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).