Page MenuHomeFreeBSD

cam: Small reorg of ata xpt async code
ClosedPublic

Authored by imp on Apr 24 2022, 2:32 AM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Mar 22, 7:03 PM
Unknown Object (File)
Mar 5 2025, 11:42 AM
Unknown Object (File)
Feb 10 2025, 7:12 AM
Unknown Object (File)
Feb 3 2025, 7:59 PM
Unknown Object (File)
Jan 30 2025, 6:36 AM
Unknown Object (File)
Jan 21 2025, 5:12 AM
Unknown Object (File)
Jan 1 2025, 7:25 PM
Unknown Object (File)
Dec 15 2024, 11:05 AM
Subscribers
None

Details

Summary

Use a switch rather than a nested if to simplify the async event
processing code. No functional changes intended.

Sponsored by: Netflix

Diff Detail

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

Event Timeline

imp requested review of this revision.Apr 24 2022, 2:32 AM
This revision is now accepted and ready to land.Apr 25 2022, 3:01 PM
This revision was automatically updated to reflect the committed changes.

Are you going to do the same for SCSI to not diverge them?

In D35038#794530, @mav wrote:

Are you going to do the same for SCSI to not diverge them?

That's a good idea. I know that nvme did it with a case statement, but I didn't look closely at scsi. thanks for suggesting I do that.

It looks like the SCSI code does this already, except it always calls cam_perhip_async(), which may have been your comment on a different review. I think ATA and SCSI (and others) should do it the same.