mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-16 01:54:00 +00:00
neigh: fix setting of default gc_* values
This patch fixes bug introduced by: commit 1d4c8c29841b9991cdf3c7cc4ba7f96a94f104ca "neigh: restore old behaviour of default parms values" The thing is that in neigh_sysctl_register, extra1 and extra2 which were previously set for NEIGH_VAR_GC_* are overwritten. That leads to nonsense int limits for gc_* variables. So fix this by not touching extra* fields for gc_* variables. Signed-off-by: Jiri Pirko <jiri@resnulli.us> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f5ddcbbb40
commit
b194c1f1db
@ -3046,7 +3046,7 @@ int neigh_sysctl_register(struct net_device *dev, struct neigh_parms *p,
|
|||||||
if (!t)
|
if (!t)
|
||||||
goto err;
|
goto err;
|
||||||
|
|
||||||
for (i = 0; i < ARRAY_SIZE(t->neigh_vars); i++) {
|
for (i = 0; i < NEIGH_VAR_GC_INTERVAL; i++) {
|
||||||
t->neigh_vars[i].data += (long) p;
|
t->neigh_vars[i].data += (long) p;
|
||||||
t->neigh_vars[i].extra1 = dev;
|
t->neigh_vars[i].extra1 = dev;
|
||||||
t->neigh_vars[i].extra2 = p;
|
t->neigh_vars[i].extra2 = p;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user