diff options
author | Eric Dumazet <edumazet@google.com> | 2024-03-06 16:00:17 +0000 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2024-03-07 21:12:41 -0800 |
commit | 0b91fa4bfb1caedd01cb6eb3b733cbc77c9edb0e (patch) | |
tree | e5f372f14503a19d33a34fdcb90c3a3a862a7af8 /include/net/hotdata.h | |
parent | f59b5416c396ac4910dd7a0cdf26cbb0e1faf529 (diff) | |
download | linux-stable-0b91fa4bfb1caedd01cb6eb3b733cbc77c9edb0e.tar.gz linux-stable-0b91fa4bfb1caedd01cb6eb3b733cbc77c9edb0e.tar.bz2 linux-stable-0b91fa4bfb1caedd01cb6eb3b733cbc77c9edb0e.zip |
net: move ptype_all into net_hotdata
ptype_all is used in rx/tx fast paths.
Move it to net_hotdata for better cache locality.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Acked-by: Soheil Hassas Yeganeh <soheil@google.com>
Reviewed-by: David Ahern <dsahern@kernel.org>
Link: https://lore.kernel.org/r/20240306160031.874438-5-edumazet@google.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'include/net/hotdata.h')
-rw-r--r-- | include/net/hotdata.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/hotdata.h b/include/net/hotdata.h index 149e56528537..d462cb8f16ba 100644 --- a/include/net/hotdata.h +++ b/include/net/hotdata.h @@ -7,6 +7,7 @@ /* Read mostly data used in network fast paths. */ struct net_hotdata { struct list_head offload_base; + struct list_head ptype_all; int gro_normal_batch; int netdev_budget; int netdev_budget_usecs; |