diff options
| author | Eric Dumazet <[email protected]> | 2024-03-06 16:00:20 +0000 |
|---|---|---|
| committer | Jakub Kicinski <[email protected]> | 2024-03-07 21:12:42 -0800 |
| commit | 0139806eebd6bcf6a3df98950cd0691aff216304 (patch) | |
| tree | 8257508a0ff3838975e1718b31159667d28b7acb /include | |
| parent | 61a0be1a5342045059ce53eabfe6500d499d2f89 (diff) | |
net: move tcpv4_offload and tcpv6_offload to net_hotdata
These are used in TCP fast paths.
Move them into net_hotdata for better cache locality.
v2: tcpv6_offload definition depends on CONFIG_INET
Signed-off-by: Eric Dumazet <[email protected]>
Acked-by: Soheil Hassas Yeganeh <[email protected]>
Reviewed-by: David Ahern <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Jakub Kicinski <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/net/hotdata.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/net/hotdata.h b/include/net/hotdata.h index d8ce20d3215d..d86d02f156fc 100644 --- a/include/net/hotdata.h +++ b/include/net/hotdata.h @@ -4,12 +4,15 @@ #include <linux/types.h> #include <linux/netdevice.h> +#include <net/protocol.h> /* Read mostly data used in network fast paths. */ struct net_hotdata { #if IS_ENABLED(CONFIG_INET) struct packet_offload ip_packet_offload; + struct net_offload tcpv4_offload; struct packet_offload ipv6_packet_offload; + struct net_offload tcpv6_offload; #endif struct list_head offload_base; struct list_head ptype_all; |