Page MenuHomeFreeBSD

iflib: Make if_shared_ctx_t a pointer to const
ClosedPublic

Authored by markj on Mar 5 2021, 9:10 PM.
Tags
None
Referenced Files
F154138070: D29102.diff
Sun, Apr 26, 12:05 PM
F154099724: D29102.diff
Sun, Apr 26, 4:40 AM
Unknown Object (File)
Sat, Apr 25, 4:08 PM
Unknown Object (File)
Thu, Apr 23, 6:07 AM
Unknown Object (File)
Thu, Apr 23, 6:06 AM
Unknown Object (File)
Wed, Apr 22, 1:07 AM
Unknown Object (File)
Tue, Apr 21, 12:01 AM
Unknown Object (File)
Mon, Apr 20, 5:14 PM
Subscribers

Details

Summary

This structure is shared among multiple instances of a driver, so we
should ensure that it doesn't somehow get treated as if there's a
separate instance per interface. This is especially important for
software-only drivers like wg.

We could perhaps make DEVICE_REGISTER return a pointer to const as well,
so the sctx structures themselves could be defined as const. I don't
quite understand what this method is supposed to do in the general case
though, so I didn't modify it.

Diff Detail

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

Event Timeline

markj requested review of this revision.Mar 5 2021, 9:10 PM
sys/net/iflib.h
52

This is the meat of the change, the rest is required to compile after.

This revision is now accepted and ready to land.Mar 5 2021, 10:15 PM
This revision was automatically updated to reflect the committed changes.