[Devel] [PATCH] [NETNS]: Namespace leak in pneigh_lookup.

Denis V. Lunev den at openvz.org
Tue Feb 19 05:12:38 PST 2008


release_net is missed on the error path in pneigh_lookup.

Signed-off-by: Denis V. Lunev <den at openvz.org>
---
 net/core/neighbour.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/net/core/neighbour.c b/net/core/neighbour.c
index 7bb6a9a..174e29e 100644
--- a/net/core/neighbour.c
+++ b/net/core/neighbour.c
@@ -507,6 +507,7 @@ struct pneigh_entry * pneigh_lookup(struct neigh_table *tbl,
 	if (tbl->pconstructor && tbl->pconstructor(n)) {
 		if (dev)
 			dev_put(dev);
+		release_net(net);
 		kfree(n);
 		n = NULL;
 		goto out;
-- 
1.5.3.rc5




More information about the Devel mailing list