Page MenuHomeFreeBSD

Fix synchronization of lbgroup access.
ClosedPublic

Authored by markj on Sep 4 2018, 9:36 PM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Jan 8, 12:25 AM
Unknown Object (File)
Dec 16 2024, 11:18 PM
Unknown Object (File)
Dec 12 2024, 4:04 AM
Unknown Object (File)
Nov 29 2024, 8:11 PM
Unknown Object (File)
Nov 21 2024, 10:27 AM
Unknown Object (File)
Nov 21 2024, 10:27 AM
Unknown Object (File)
Nov 21 2024, 10:27 AM
Unknown Object (File)
Nov 21 2024, 10:04 AM
Subscribers

Details

Summary

lbgroup hash table lookups are protected by epoch sections, but the hash
chains are regular LISTs instead of CK_LISTs. We also were not
deferring frees of inpcblbgroups.

Test Plan

Regression test in D17110.

gallatin tested the patch on a box at Netflix.

Diff Detail

Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 19396
Build 18996: arc lint + arc unit

Event Timeline

This revision is now accepted and ready to land.Sep 6 2018, 3:27 PM

Yeah, CK work was committed soon after so_reuseport_lb was merged so this was missed. Thanks for fixing!

FWIW, as I mentioned in private email, the testing went fine. I verified that there were no apparent mem leaks, and that in_pcblbgroup_free_deferred() was called when I bounced nginx several times on a heavily loaded (> 90Gb/s) box.

FWIW, as I mentioned in private email, the testing went fine. I verified that there were no apparent mem leaks, and that in_pcblbgroup_free_deferred() was called when I bounced nginx several times on a heavily loaded (> 90Gb/s) box.

Indeed, thanks. I also wrote some regression tests; see D17110. I submitted this diff to re@ already.

This revision was automatically updated to reflect the committed changes.