From: Marc Kleine-Budde <mkl@pengutronix.de> Date: 2021-07-21 11:27:31
In patch 8ca07176ab00 ("net: switchdev: introduce a fanout helper for
SWITCHDEV_FDB_{ADD,DEL}_TO_DEVICE") new functionality including static
inline no-op functions if CONFIG_NET_SWITCHDEV is disabled was added.
This patch fixes the following build error for disabled
CONFIG_NET_SWITCHDEV:
| In file included from include/net/dsa.h:23,
| from net/core/flow_dissector.c:8:
| include/net/switchdev.h:410:1: error: expected identifier or ‘(’ before ‘{’ token
| 410 | {
| | ^
| include/net/switchdev.h:399:1: warning: ‘switchdev_handle_fdb_del_to_device’ declared ‘static’ but never defined [-Wunused-function]
| 399 | switchdev_handle_fdb_del_to_device(struct net_device *dev,
| | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Fixes: 8ca07176ab00 ("net: switchdev: introduce a fanout helper for SWITCHDEV_FDB_{ADD,DEL}_TO_DEVICE")
Cc: Vladimir Oltean <vladimir.oltean@nxp.com>
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
---
changes since v1:
- added net-next to patch subject
include/net/switchdev.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
From: Vladimir Oltean <vladimir.oltean@nxp.com> Date: 2021-07-21 11:27:31
Hi Marc,
On Wed, Jul 21, 2021 at 12:17:14PM +0200, Marc Kleine-Budde wrote:
In patch 8ca07176ab00 ("net: switchdev: introduce a fanout helper for
SWITCHDEV_FDB_{ADD,DEL}_TO_DEVICE") new functionality including static
inline no-op functions if CONFIG_NET_SWITCHDEV is disabled was added.
This patch fixes the following build error for disabled
CONFIG_NET_SWITCHDEV:
| In file included from include/net/dsa.h:23,
| from net/core/flow_dissector.c:8:
| include/net/switchdev.h:410:1: error: expected identifier or ‘(’ before ‘{’ token
| 410 | {
| | ^
| include/net/switchdev.h:399:1: warning: ‘switchdev_handle_fdb_del_to_device’ declared ‘static’ but never defined [-Wunused-function]
| 399 | switchdev_handle_fdb_del_to_device(struct net_device *dev,
| | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Fixes: 8ca07176ab00 ("net: switchdev: introduce a fanout helper for SWITCHDEV_FDB_{ADD,DEL}_TO_DEVICE")
Cc: Vladimir Oltean <vladimir.oltean@nxp.com>
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
---
Hello:
This patch was applied to netdev/net-next.git (refs/heads/master):
On Wed, 21 Jul 2021 12:17:14 +0200 you wrote:
In patch 8ca07176ab00 ("net: switchdev: introduce a fanout helper for
SWITCHDEV_FDB_{ADD,DEL}_TO_DEVICE") new functionality including static
inline no-op functions if CONFIG_NET_SWITCHDEV is disabled was added.
This patch fixes the following build error for disabled
CONFIG_NET_SWITCHDEV:
[...]