浏览代码

neigh: use neigh_parms_net() to get struct neigh_parms->net pointer

This fixes compile error when CONFIG_NET_NS is not set.

Introduced by:
commit 1d4c8c29841b9991cdf3c7cc4ba7f96a94f104ca
    "neigh: restore old behaviour of default parms values"

Signed-off-by: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: David S. Miller <davem@davemloft.net>
Jiri Pirko 12 年之前
父节点
当前提交
77d47afbf3
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      net/core/neighbour.c

+ 1 - 1
net/core/neighbour.c

@@ -2850,7 +2850,7 @@ static void neigh_proc_update(struct ctl_table *ctl, int write)
 {
 {
 	struct net_device *dev = ctl->extra1;
 	struct net_device *dev = ctl->extra1;
 	struct neigh_parms *p = ctl->extra2;
 	struct neigh_parms *p = ctl->extra2;
-	struct net *net = p->net;
+	struct net *net = neigh_parms_net(p);
 	int index = (int *) ctl->data - p->data;
 	int index = (int *) ctl->data - p->data;
 
 
 	if (!write)
 	if (!write)