Page MenuHomeFreeBSD

iflib: hold the CTX lock in iflib_pseudo_register
ClosedPublic

Authored by jacob.e.keller_intel.com on Mar 15 2019, 11:53 PM.
Tags
None
Referenced Files
Unknown Object (File)
Fri, Sep 12, 7:21 AM
Unknown Object (File)
Sun, Sep 7, 5:50 AM
Unknown Object (File)
Aug 12 2025, 10:56 AM
Unknown Object (File)
Aug 4 2025, 2:54 AM
Unknown Object (File)
Jul 26 2025, 6:42 PM
Unknown Object (File)
Jul 13 2025, 6:14 AM
Unknown Object (File)
Jul 7 2025, 12:02 PM
Unknown Object (File)
Jul 5 2025, 10:49 PM
Subscribers

Details

Summary

The iflib_device_register function takes the CTX lock before calling
IFDI_ATTACH_PRE, and releases it upon finishing the registration.

Mirror this process in iflib_pseudo_register, so that we always hold the
CTX lock during the attach process when registering a pseudo interface
or a regular interface.

This was caught by code inspection while attempting to analyze where the
CTX lock was held.

Signed-off-by: Jacob Keller <jacob.e.keller@intel.com>

Diff Detail

Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 23126
Build 22179: arc lint + arc unit

Event Timeline

erj added a subscriber: erj.

Anyone else have any feedback? It makes sense to me that the attach process for pseudo devices should use the context lock like the attach process for regular devices.

This revision is now accepted and ready to land.Mar 27 2019, 5:31 PM
This revision was automatically updated to reflect the committed changes.