]> git.itanic.dy.fi Git - linux-stable/commit
net: move dev->state into net_device_read_txrx group
authorEric Dumazet <edumazet@google.com>
Thu, 14 Mar 2024 20:08:45 +0000 (20:08 +0000)
committerPaolo Abeni <pabeni@redhat.com>
Tue, 19 Mar 2024 09:47:47 +0000 (10:47 +0100)
commitf6e0a4984c2e7244689ea87b62b433bed9d07e94
tree7bed2f63a9f81721d74ca16d13c7c27ddf877906
parent35c3e27917568192927c785fc380f139255468b4
net: move dev->state into net_device_read_txrx group

dev->state can be read in rx and tx fast paths.

netif_running() which needs dev->state is called from
- enqueue_to_backlog() [RX path]
- __dev_direct_xmit()  [TX path]

Fixes: 43a71cd66b9c ("net-device: reorganize net_device fast path variables")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Cc: Coco Li <lixiaoyan@google.com>
Reviewed-by: Jiri Pirko <jiri@nvidia.com>
Link: https://lore.kernel.org/r/20240314200845.3050179-1-edumazet@google.com
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Documentation/networking/net_cachelines/net_device.rst
include/linux/netdevice.h
net/core/dev.c