Page MenuHomeFreeBSD

xen/intr: hand off closing of ports sooner
Needs ReviewPublic

Authored by ehem_freebsd_m5p.com on Jul 30 2021, 2:27 AM.
Tags
None
Referenced Files
Unknown Object (File)
Feb 12 2024, 1:28 PM
Unknown Object (File)
Jan 31 2024, 8:09 AM
Unknown Object (File)
Dec 22 2023, 11:19 PM
Unknown Object (File)
Dec 10 2023, 8:57 PM
Unknown Object (File)
Dec 1 2023, 1:30 PM
Unknown Object (File)
Oct 15 2023, 8:10 PM
Unknown Object (File)
Sep 6 2023, 7:17 AM
Unknown Object (File)
Aug 22 2023, 11:13 AM
Subscribers

Details

Reviewers
royger
Summary

Since xi_close now comes along for the ride, move some cases of closing
the port on failure into xen_intr_bind_isrc().

Diff Detail

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

Event Timeline

Simply exploring some of the potential effects of D31188. Alas moving other close needed instances in is rather more difficult.

Updating this in light of other patches having been updated.

This appears to potentially benefit from D32876 as it means there is no longer a need to use xen_intr_unbind(). There is even more potential for merging things down, but this needs to be done with care. Alas, this doesn't appear to benefit my main goal.

Finally figured out how to do this, D33622/D33623/D33624 are how. Some functions were using xen_intr_unbind() since they needed the handler removed before calling xen_intr_release_isrc(), D33622 addresses the issue. Then simply cleaning things up.

Updating to present tree status. Like the others in this sequence, suddenly a distinct approach has a massive impact.