net: refactor ->ndo_bpf calls into dev_xdp_propagate
authorMina Almasry <almasrymina@google.com>
Thu, 22 Aug 2024 05:51:54 +0000 (05:51 +0000)
committerDavid S. Miller <davem@davemloft.net>
Sat, 24 Aug 2024 14:27:22 +0000 (15:27 +0100)
commit7d3aed652d090508990d245f9d80dcc481910d02
tree9659be1ae50c1baf88a35bfc492e3abee902d038
parentf9db28bb09f46087580f2a8da54bb0aab59a8024
net: refactor ->ndo_bpf calls into dev_xdp_propagate

When net devices propagate xdp configurations to slave devices,
we will need to perform a memory provider check to ensure we're
not binding xdp to a device using unreadable netmem.

Currently the ->ndo_bpf calls in a few places. Adding checks to all
these places would not be ideal.

Refactor all the ->ndo_bpf calls into one place where we can add this
check in the future.

Suggested-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Mina Almasry <almasrymina@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/bonding/bond_main.c
drivers/net/hyperv/netvsc_bpf.c
include/linux/netdevice.h
net/core/dev.c