When converting the static arrays to mallocarray() in r356621 I missed
one place where we now need to multiply the size of the struct with the number of entries. This lead to problems when restarting user space daemons, as the cleanup was never properly done, resulting in MRT_ADD_VIF EADDRINUSE. Properly zero all array elements to avoid this problem. PR: 246629, 206583 Reported by: (many) MFC after: 4 days Sponsored by: Rubicon Communications, LLC (d/b/a "Netgate")
This commit is contained in:
parent
b7b3d237e7
commit
ce19cceb8d
@ -740,7 +740,7 @@ X_ip_mrouter_done(void)
|
|||||||
if_allmulti(ifp, 0);
|
if_allmulti(ifp, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
bzero((caddr_t)V_viftable, sizeof(V_viftable));
|
bzero((caddr_t)V_viftable, sizeof(V_viftable) * MAXVIFS);
|
||||||
V_numvifs = 0;
|
V_numvifs = 0;
|
||||||
V_pim_assert_enabled = 0;
|
V_pim_assert_enabled = 0;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user