net 33/41: sysctl_net - use net_eq to compare nets

Previous thread: netfilter 41/41: nf_conntrack: Reduce conntrack count in nf_conntrack_free() by Patrick McHardy on Tuesday, March 24, 2009 - 7:04 am. (1 message)

Next thread: netfilter 21/41: xt_hashlimit fix by Patrick McHardy on Tuesday, March 24, 2009 - 7:03 am. (1 message)
From: Patrick McHardy
Date: Tuesday, March 24, 2009 - 7:03 am

commit 81a1d3c31e3517f9939b3e04d21cf4a6b0997419
Author: Cyrill Gorcunov <gorcunov@openvz.org>
Date:   Mon Mar 16 16:23:30 2009 +0100

    net: sysctl_net - use net_eq to compare nets
    
    Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
    Acked-by: Daniel Lezcano <daniel.lezcano@free.fr>
    Signed-off-by: Patrick McHardy <kaber@trash.net>

diff --git a/net/sysctl_net.c b/net/sysctl_net.c
index 972201c..0b15d72 100644
--- a/net/sysctl_net.c
+++ b/net/sysctl_net.c
@@ -61,7 +61,7 @@ static struct ctl_table_root net_sysctl_root = {
 static int net_ctl_ro_header_perms(struct ctl_table_root *root,
 		struct nsproxy *namespaces, struct ctl_table *table)
 {
-	if (namespaces->net_ns == &init_net)
+	if (net_eq(namespaces->net_ns, &init_net))
 		return table->mode;
 	else
 		return table->mode & ~0222;
--

Previous thread: netfilter 41/41: nf_conntrack: Reduce conntrack count in nf_conntrack_free() by Patrick McHardy on Tuesday, March 24, 2009 - 7:04 am. (1 message)

Next thread: netfilter 21/41: xt_hashlimit fix by Patrick McHardy on Tuesday, March 24, 2009 - 7:03 am. (1 message)