net: bridge: fix build when setting skb->offload_fwd_mark with CONFIG_NET_SWITCHDEV=n
authorVladimir Oltean <vladimir.oltean@nxp.com>
Fri, 23 Jul 2021 20:49:11 +0000 (23:49 +0300)
committerDavid S. Miller <davem@davemloft.net>
Sat, 24 Jul 2021 20:48:26 +0000 (21:48 +0100)
commitc5381154393d42e2edd77fc74f1493f9f93908cb
tree767789e67ad87271b76aef4e3ee59dbe3beb2000
parentfacfbf4f0b5afbf2d9a4147ca57c84dce2c7b8e2
net: bridge: fix build when setting skb->offload_fwd_mark with CONFIG_NET_SWITCHDEV=n

Switchdev support can be disabled at compile time, and in that case,
struct sk_buff will not contain the offload_fwd_mark field.

To make the code in br_forward.c work in both cases, we do what is done
in other places and we create a helper function, with an empty shim
definition, that is implemented by the br_switchdev.o translation module.
This is always compiled if and only if CONFIG_NET_SWITCHDEV is y or m.

Reported-by: kernel test robot <lkp@intel.com>
Fixes: 472111920f1c ("net: bridge: switchdev: allow the TX data plane forwarding to be offloaded")
Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/bridge/br_forward.c
net/bridge/br_private.h
net/bridge/br_switchdev.c