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)
Feb 5 2024, 5:19 PM
Unknown Object (File)
Jan 11 2024, 5:38 PM
Unknown Object (File)
Dec 25 2023, 6:09 AM
Unknown Object (File)
Dec 20 2023, 8:35 AM
Unknown Object (File)
Dec 12 2023, 12:39 PM
Unknown Object (File)
Sep 21 2023, 5:32 AM
Unknown Object (File)
Sep 11 2023, 4:07 AM
Unknown Object (File)
Sep 6 2023, 9:09 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.