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)
Sat, Mar 1, 6:10 AM
Unknown Object (File)
Wed, Feb 26, 2:15 AM
Unknown Object (File)
Sun, Feb 9, 12:45 PM
Unknown Object (File)
Sun, Feb 9, 12:44 PM
Unknown Object (File)
Sun, Feb 9, 12:43 PM
Unknown Object (File)
Jan 31 2025, 4:40 PM
Unknown Object (File)
Jan 27 2025, 7:19 AM
Unknown Object (File)
Jan 24 2025, 5:27 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

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

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.