Skip to content

Commit

Permalink
sfc: do not try to call tc functions when CONFIG_SFC_SRIOV=n
Browse files Browse the repository at this point in the history
Functions efx_tc_netdev_event and efx_tc_netevent_event do not exist
 in that case as object files tc_bindings.o and tc_encap_actions.o
 are not built, so the calls to them from ef100_netdev_event and
 ef100_netevent_event cause link errors.
Wrap the corresponding header files (tc_bindings.h, tc_encap_actions.h)
 with #if IS_ENABLED(CONFIG_SFC_SRIOV), and add an #else with static
 inline stubs for these two functions.

Reported-by: kernel test robot <[email protected]>
Closes: https://lore.kernel.org/oe-kbuild-all/[email protected]/
Fixes: 7e5e7d8 ("sfc: neighbour lookup for TC encap action offload")
Signed-off-by: Edward Cree <[email protected]>
Reviewed-by: Martin Habets <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
Edward Cree authored and davem330 committed Jun 16, 2023
1 parent 1282723 commit c08afcd
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
12 changes: 12 additions & 0 deletions drivers/net/ethernet/sfc/tc_bindings.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
#define EFX_TC_BINDINGS_H
#include "net_driver.h"

#if IS_ENABLED(CONFIG_SFC_SRIOV)
#include <net/sch_generic.h>

struct efx_rep;
Expand All @@ -28,4 +29,15 @@ int efx_tc_indr_setup_cb(struct net_device *net_dev, struct Qdisc *sch,
void (*cleanup)(struct flow_block_cb *block_cb));
int efx_tc_netdev_event(struct efx_nic *efx, unsigned long event,
struct net_device *net_dev);

#else /* CONFIG_SFC_SRIOV */

static inline int efx_tc_netdev_event(struct efx_nic *efx, unsigned long event,
struct net_device *net_dev)
{
return NOTIFY_DONE;
}

#endif /* CONFIG_SFC_SRIOV */

#endif /* EFX_TC_BINDINGS_H */
11 changes: 11 additions & 0 deletions drivers/net/ethernet/sfc/tc_encap_actions.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
#define EFX_TC_ENCAP_ACTIONS_H
#include "net_driver.h"

#if IS_ENABLED(CONFIG_SFC_SRIOV)
#include <linux/refcount.h>
#include <net/tc_act/tc_tunnel_key.h>

Expand Down Expand Up @@ -100,4 +101,14 @@ void efx_tc_unregister_egdev(struct efx_nic *efx, struct net_device *net_dev);
int efx_tc_netevent_event(struct efx_nic *efx, unsigned long event,
void *ptr);

#else /* CONFIG_SFC_SRIOV */

static inline int efx_tc_netevent_event(struct efx_nic *efx,
unsigned long event, void *ptr)
{
return NOTIFY_DONE;
}

#endif /* CONFIG_SFC_SRIOV */

#endif /* EFX_TC_ENCAP_ACTIONS_H */

0 comments on commit c08afcd

Please sign in to comment.