-
Notifications
You must be signed in to change notification settings - Fork 107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
netlink: cleanup interfaces upon removal #229
base: master
Are you sure you want to change the base?
Conversation
Previously, when an interface was removed radvd did not release it's multicast membership leaking kernel resources leading to a potential out of memory failure of the `setsockopt([...], IPV6_ADD_MEMBERSHIP, [...])` call. Signed-off-by: Antoine Damhet <[email protected]>
@robbat2 did you have time to look ? as a side-note the code is running on multiple thousand of machines since late February without issue yet |
@reubenhwk: What do you think? |
I've look over the change and I agree that it is correct. It should be merged. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks correct to me.
Why did the CI not run for the PR? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
approving to see if CI runs
Previously, when an interface was removed radvd did not release it's multicast membership leaking kernel resources leading to a potential out of memory failure of the
setsockopt([...], IPV6_ADD_MEMBERSHIP, [...])
call.Fixes #228