diff options
author | Jiri Pirko <jiri@resnulli.us> | 2013-12-07 19:26:55 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-12-09 20:56:12 -0500 |
commit | 73af614aedd221df8495fc8c9993c50e87f899f2 (patch) | |
tree | 66eaab080b5add40cf2fc06f194d1c808bb2ec60 /net/ipv6/ndisc.c | |
parent | cb5b09c17fe60056bc8f127ffc987d361c40ed4b (diff) | |
download | op-kernel-dev-73af614aedd221df8495fc8c9993c50e87f899f2.zip op-kernel-dev-73af614aedd221df8495fc8c9993c50e87f899f2.tar.gz |
neigh: use tbl->family to distinguish ipv4 from ipv6
Signed-off-by: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/ndisc.c')
-rw-r--r-- | net/ipv6/ndisc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/ndisc.c b/net/ipv6/ndisc.c index 5fc6f69..09a22f4 100644 --- a/net/ipv6/ndisc.c +++ b/net/ipv6/ndisc.c @@ -1730,7 +1730,7 @@ int __init ndisc_init(void) neigh_table_init(&nd_tbl); #ifdef CONFIG_SYSCTL - err = neigh_sysctl_register(NULL, &nd_tbl.parms, "ipv6", + err = neigh_sysctl_register(NULL, &nd_tbl.parms, &ndisc_ifinfo_sysctl_change); if (err) goto out_unregister_pernet; |