netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [net-next] bonding: don't allow the master to become its slave
@ 2012-08-09 18:30 Flavio Leitner
  2012-08-09 18:45 ` Leonardo Chiquitto
  2012-08-09 19:03 ` Ben Hutchings
  0 siblings, 2 replies; 12+ messages in thread
From: Flavio Leitner @ 2012-08-09 18:30 UTC (permalink / raw)
  To: netdev; +Cc: Jay Vosburgh, Andy Gospodarek, Leonardo Chiquitto, Flavio Leitner

It doesn't make any sense to allow the master to become
its slave. That creates a loop of events causing a crash.

Reported-by: Leonardo Chiquitto <lchiquitto@suse.com>
Signed-off-by: Flavio Leitner <fbl@redhat.com>
---
 drivers/net/bonding/bond_main.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c
index 6fae5f3..5407b44 100644
--- a/drivers/net/bonding/bond_main.c
+++ b/drivers/net/bonding/bond_main.c
@@ -1505,6 +1505,11 @@ int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev)
 	int link_reporting;
 	int res = 0;
 
+	if (bond_dev == slave_dev) {
+		pr_err("%s: Error: cannot enslave itself.\n", bond_dev->name);
+		return -EINVAL;
+	}
+
 	if (!bond->params.use_carrier && slave_dev->ethtool_ops == NULL &&
 		slave_ops->ndo_do_ioctl == NULL) {
 		pr_warning("%s: Warning: no link monitoring support for %s\n",
-- 
1.7.11.2

^ permalink raw reply related	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2012-08-10 13:04 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-09 18:30 [net-next] bonding: don't allow the master to become its slave Flavio Leitner
2012-08-09 18:45 ` Leonardo Chiquitto
2012-08-09 19:03 ` Ben Hutchings
2012-08-09 19:23   ` Jay Vosburgh
2012-08-09 19:39   ` Flavio Leitner
2012-08-09 19:55     ` Jiri Pirko
2012-08-09 20:52       ` Flavio Leitner
2012-08-09 21:09       ` Ben Hutchings
2012-08-09 21:27         ` Jay Vosburgh
2012-08-09 23:43           ` David Miller
2012-08-10 13:04             ` Jiri Pirko
2012-08-09 19:54   ` Jiri Pirko

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).