On Mon, May 02, 2022 at 08:09:17AM -0700, Brian Bunker wrote: > case SCSI_ACCESS_STATE_ACTIVE: > case SCSI_ACCESS_STATE_LBA: > - return BLK_STS_OK; > case SCSI_ACCESS_STATE_TRANSITIONING: > - return BLK_STS_AGAIN; > + return BLK_STS_OK; As there is a lot of discussion on BLK_STS_AGAIN in the thread: Independent of the actul outcome here, BLK_STS_AGAIN is fundamentally the wrong thing to return here. BLK_STS_AGAIN must only be returned for REQ_NOWAIT requests that would have to block.