diff options
Diffstat (limited to 'net/ipv4/sysctl_net_ipv4.c')
-rw-r--r-- | net/ipv4/sysctl_net_ipv4.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net/ipv4/sysctl_net_ipv4.c b/net/ipv4/sysctl_net_ipv4.c index 1e1fe6086dd9..bb0419582b8d 100644 --- a/net/ipv4/sysctl_net_ipv4.c +++ b/net/ipv4/sysctl_net_ipv4.c | |||
@@ -960,6 +960,17 @@ static struct ctl_table ipv4_net_table[] = { | |||
960 | .mode = 0644, | 960 | .mode = 0644, |
961 | .proc_handler = proc_dointvec, | 961 | .proc_handler = proc_dointvec, |
962 | }, | 962 | }, |
963 | #ifdef CONFIG_IP_ROUTE_MULTIPATH | ||
964 | { | ||
965 | .procname = "fib_multipath_use_neigh", | ||
966 | .data = &init_net.ipv4.sysctl_fib_multipath_use_neigh, | ||
967 | .maxlen = sizeof(int), | ||
968 | .mode = 0644, | ||
969 | .proc_handler = proc_dointvec_minmax, | ||
970 | .extra1 = &zero, | ||
971 | .extra2 = &one, | ||
972 | }, | ||
973 | #endif | ||
963 | { } | 974 | { } |
964 | }; | 975 | }; |
965 | 976 | ||