net_failover: fixed rollback in net_failover_open()
[ Upstream commit e8224bfe77293494626f6eec1884fee7b87d0ced ]
found by smatch:
drivers/net/net_failover.c:65 net_failover_open() error:
we previously assumed 'primary_dev' could be null (see line 43)
Fixes: cfc80d9a11
("net: Introduce net_failover driver")
Signed-off-by: Vasily Averin <vvs@virtuozzo.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
470e709f63
commit
8e62792afc
1 changed files with 2 additions and 1 deletions
|
@ -62,6 +62,7 @@ static int net_failover_open(struct net_device *dev)
|
|||
return 0;
|
||||
|
||||
err_standby_open:
|
||||
if (primary_dev)
|
||||
dev_close(primary_dev);
|
||||
err_primary_open:
|
||||
netif_tx_disable(dev);
|
||||
|
|
Loading…
Reference in a new issue