On Sun, 2023-09-17 at 19:35 -0500, Mike Christie wrote: > On 9/15/23 4:34 PM, Martin Wilck wrote: > > On Fri, 2023-09-15 at 22:21 +0200, Martin Wilck wrote: > > > On Tue, 2023-09-05 at 18:15 -0500, Mike Christie wrote: > > > > This has read_capacity_16 have scsi-ml retry errors instead of > > > > driving > > > > them itself. > > > > > > > > There are 2 behavior changes with this patch: > > > > 1. There is one behavior change where we no longer retry when > > > > scsi_execute_cmd returns < 0, but we should be ok. We don't > > > > need to > > > > retry > > > > for failures like the queue being removed, and for the case > > > > where > > > > there > > > > are no tags/reqs since the block layer waits/retries for us. > > > > For > > > > possible > > > > memory allocation failures from blk_rq_map_kern we use > > > > GFP_NOIO, so > > > > retrying will probably not help. > > > > 2. For the specific UAs we checked for and retried, we would > > > > get > > > > READ_CAPACITY_RETRIES_ON_RESET retries plus whatever retries > > > > were > > > > left > > > > from the loop's retries. Each UA now gets > > > > READ_CAPACITY_RETRIES_ON_RESET > > > > reties, and the other errors (not including medium not present) > > > > get > > > > up > > > > to 3 retries. > > > > > > This is ok, but - just a thought - would it make sense to add a > > > field > > > for maximum total retry count (summed over all failures)? That > > > would > > > allow us to minimize behavior changes also in other cases. > > > > Could we perhaps use scmd->allowed for this purpose? > > > > I noted that several callers of scsi_execute_cmd() in your patch > > set > > set the allowed parameter, e.g. to sdkp->max_retries in 07/34. > > But allowed doesn't seem to be used at all in the passthrough case, > > I think scmd->allowed is still used for errors that don't hit the > check_type goto in scsi_no_retry_cmd. > > If the user sets up scsi failures for only UAs, and we got a > DID_TRANSPORT_DISRUPTED then we we do scsi_cmd_retry_allowed which > checks scmd->allowed. > > In scsi_noretry_cmd we then hit the: > > if (!scsi_status_is_check_condition(scmd->result)) > return false; > > and will retry. Right. But that's pretty confusing. Actually, I am confused about some other things as well. I apologize for taking a step back and asking some more questions and presenting some more thoughts about your patch set as a whole. For passthrough commands, the simplified logic is now: scsi_decide_disposition() { if (!scsi_device_online) return SUCCESS; if ((rtn = scsi_check_passthrough(scmd)) != SCSI_RETURN_NOT_HANDLED) return rtn; /* handle host byte for regular commands, may return SUCESS, NEEDS_RETRY/ADD_TO_MLQUEUE, FAILED, fall through, or jump to maybe_retry */ /* handle status byte for regular commands, likewise */ maybe_retry: /* [2] */ if (scsi_cmd_retry_allowed(scmd) && !scsi_noretry_cmd(scmd)) return NEEDS_RETRY; else return SUCCESS; } where scsi_noretry_cmd() has special treatment for passthrough commands in certain cases (DID_TIME_OUT and CHECK_CONDITION). Because you put the call to scsi_check_passthrough() before the standard checks, some retries that the mid layer used to do will now not be done if scsi_check_passthrough() returns SUCCESS. Also, depending on the list of failures passed with the command, we might miss the clauses in scsi_decide_disposition() where we previously returned FAILED (I haven't reviewed the current callers, but at least in theory it can happen). This will obviously change the runtime behavior, in ways I wouldn't bet can't be detrimental. Before your patch set, the checks we now do in scsi_check_passthrough() were only performed in the case where the "regular command checks" returned SUCCESS. If we want as little behavior change as possible, the SUCCESS case is where we should plug in the call to scsi_check_passthrough(). Or am I missing something? [1] This way we'd preserve the current semantics of "retries" and "allowed" which used to relate only to what were the "mid-layer retries" before your patch set. > > so we might as well use it as an upper limit for the total number of > > retries. > > > > If you really want an overall retry count let me know. I can just add > a total limit to the scsi_failures struct. You have been the only person > to ask about it and it didn't sound like you were sure if you wanted it > or not, so I haven't done it. The question whether we want an additional limit for the total "failure retry" count is orthogonal to the above. My personal opinion is that we do, as almost all call sites that I've seen in your set currently use just a single retry count for all failures they handle. I'm not sure whether the separate total retry count would have practical relevance. I think that in most practical cases we won't have a mix of standard "ML" retries and multiple different failure cases. I suppose that in any given situation, it's more likely that there's a single error condition which repeats. I'm also unsure whether all this theoretical reasoning of mine warrants you putting even more effort into this patch set, which has seen 11 revisions already. In general, you have much more experience with SCSI error handling than I do. Martin [1] If we did that, we'd could also take into account that previously the caller would have called scsi_execute_cmd() again, which would have reset cmd->retries; so we could reset this field if scsi_check_passthrough() decides to retry the command. [2] It's weird, although unrelated to your patch set, that in the maybe_retry clause we increment cmd->retries before checking scsi_noretry_cmd().