Netdev List
 help / color / mirror / Atom feed
* [PATCH net-next] tipc: add missing dev_put() on error in tipc_enable_l2_media
@ 2018-07-25 10:00 YueHaibing
  2018-07-26  2:18 ` Jon Maloy
  2018-07-26 21:05 ` David Miller
  0 siblings, 2 replies; 3+ messages in thread
From: YueHaibing @ 2018-07-25 10:00 UTC (permalink / raw)
  To: davem, jon.maloy, ying.xue
  Cc: linux-kernel, netdev, tipc-discussion, YueHaibing

when tipc_own_id failed to obtain node identity,dev_put should
be call before return -EINVAL.

Fixes: 682cd3cf946b ("tipc: confgiure and apply UDP bearer MTU on running links")
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
---
 net/tipc/bearer.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net/tipc/bearer.c b/net/tipc/bearer.c
index fd6d8f1..418f03d 100644
--- a/net/tipc/bearer.c
+++ b/net/tipc/bearer.c
@@ -395,6 +395,7 @@ int tipc_enable_l2_media(struct net *net, struct tipc_bearer *b,
 		tipc_net_init(net, node_id, 0);
 	}
 	if (!tipc_own_id(net)) {
+		dev_put(dev);
 		pr_warn("Failed to obtain node identity\n");
 		return -EINVAL;
 	}
-- 
2.7.0

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

end of thread, other threads:[~2018-07-26 21:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-25 10:00 [PATCH net-next] tipc: add missing dev_put() on error in tipc_enable_l2_media YueHaibing
2018-07-26  2:18 ` Jon Maloy
2018-07-26 21:05 ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox