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)
Mon, Apr 27, 12:57 PM
Unknown Object (File)
Sat, Apr 25, 5:44 AM
Unknown Object (File)
Fri, Apr 24, 6:31 AM
Unknown Object (File)
Tue, Apr 21, 11:45 AM
Unknown Object (File)
Thu, Apr 9, 8:14 PM
Unknown Object (File)
Thu, Apr 9, 11:31 AM
Unknown Object (File)
Thu, Apr 9, 11:27 AM
Unknown Object (File)
Mar 17 2026, 11:55 PM
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.