Page MenuHomeFreeBSD

getnetconfig: make nc_error a thread local variable
ClosedPublic

Authored by brooks on Feb 16 2026, 2:17 PM.
Tags
None
Referenced Files
F164845761: D55310.id173173.diff
Tue, Aug 4, 7:29 AM
Unknown Object (File)
Mon, Aug 3, 6:06 AM
Unknown Object (File)
Thu, Jul 30, 6:34 PM
Unknown Object (File)
Sat, Jul 25, 4:24 PM
Unknown Object (File)
Thu, Jul 23, 2:38 AM
Unknown Object (File)
Tue, Jul 21, 2:46 PM
Unknown Object (File)
Wed, Jul 15, 7:08 AM
Unknown Object (File)
Wed, Jul 15, 7:08 AM
Subscribers

Details

Summary

Remove a bunch of complexity at the cost of 4 bytes of storage per
thread.

Sponsored by: DARPA, AFRL

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

I suspect the complexity wasn't to avoid 4 bytes per thread but more because TLS wasn't reliably working on all of our architectures when this was first written (but I could be wrong). :)

This revision is now accepted and ready to land.Feb 25 2026, 1:45 AM
In D55310#1269811, @jhb wrote:

I suspect the complexity wasn't to avoid 4 bytes per thread but more because TLS wasn't reliably working on all of our architectures when this was first written (but I could be wrong). :)

I'm sure that's true, it just turns out to be a small benefit in the common case. There are a bunch more of these that I'm tempted to convert, but they involve large structs.