Page MenuHomeFreeBSD

ktls: Improve handling of the bind_threads tunable a bit
ClosedPublic

Authored by markj on Jan 14 2021, 4:36 PM.
Tags
None
Referenced Files
Unknown Object (File)
Fri, Sep 18, 8:40 AM
Unknown Object (File)
Wed, Sep 16, 9:31 AM
Unknown Object (File)
Thu, Sep 10, 4:27 PM
Unknown Object (File)
Sun, Sep 6, 6:14 PM
Unknown Object (File)
Sun, Sep 6, 3:09 PM
Unknown Object (File)
Sun, Sep 6, 3:02 PM
Unknown Object (File)
Sat, Sep 5, 5:27 AM
Unknown Object (File)
Fri, Sep 4, 2:11 AM
Subscribers

Details

Summary
  • Only check for empty domains if we actually tried to configure domain affinity in the first place. Otherwise setting bind_threads=1 will always cause the sysctl value to be reported as zero. This is harmless since the threads end up being bound, but it's confusing.
  • Try to improve the sysctl description a bit.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 36204
Build 33093: arc lint + arc unit

Event Timeline

markj requested review of this revision.Jan 14 2021, 4:36 PM
This revision is now accepted and ready to land.Jan 14 2021, 6:14 PM

I saw this the other day and almost thought that we should have separate knobs for "bind threads to cores" and "bind sessions to NUMA domains" rather than have ktls_bind_threads serve as a kind of tri-state. However, I think this approach is fine.