[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1431511723-26323-1-git-send-email-ogerlitz@mellanox.com>
Date: Wed, 13 May 2015 13:08:43 +0300
From: Or Gerlitz <ogerlitz@...lanox.com>
To: "David S. Miller" <davem@...emloft.net>
Cc: netdev@...r.kernel.org, Scott Feldman <sfeldma@...il.com>,
Jiri Pirko <jiri@...nulli.us>,
Or Gerlitz <ogerlitz@...lanox.com>
Subject: [PATCH net-next] net/bridge: Enable bridge also when switchdev can't be built
Currently switchdev doesn't build on older gcc version such as 4.4.6
The reason for the compile error is such that it causes a failure
to build the bridge too, even when switchdev isn't configured (the
stub isn't enough), fix it.
CC [M] net/bridge/br_stp.o
net/bridge/br_stp.c: In function 'br_set_state':
net/bridge/br_stp.c:44: error: unknown field 'stp_state' specified in initializer
Signed-off-by: Or Gerlitz <ogerlitz@...lanox.com>
---
net/bridge/br_stp.c | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/net/bridge/br_stp.c b/net/bridge/br_stp.c
index b9300da..752783a 100644
--- a/net/bridge/br_stp.c
+++ b/net/bridge/br_stp.c
@@ -39,17 +39,19 @@ void br_log_state(const struct net_bridge_port *p)
void br_set_state(struct net_bridge_port *p, unsigned int state)
{
+#ifdef CONFIG_NET_SWITCHDEV
struct switchdev_attr attr = {
.id = SWITCHDEV_ATTR_PORT_STP_STATE,
.stp_state = state,
};
int err;
- p->state = state;
err = switchdev_port_attr_set(p->dev, &attr);
if (err && err != -EOPNOTSUPP)
br_warn(p->br, "error setting offload STP state on port %u(%s)\n",
(unsigned int) p->port_no, p->dev->name);
+#endif
+ p->state = state;
}
/* called under bridge lock */
--
1.7.1
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists