On Fri, Jan 24, 2020 at 7:30 AM Ming Lei <ming.lei@xxxxxxxxxx> wrote: > > Hi Martin, > > On Thu, Jan 23, 2020 at 08:21:42PM -0500, Martin K. Petersen wrote: > > > > Ming, > > > > > However, it depends on if the target device returns the congestion to > > > host. From my observation, looks there isn't such feedback from NVMe > > > target. > > > > It happens all the time with SCSI devices. It is imperative that this > > keeps working. > > > > > Even if there was such SSD target which provides such congestion > > > feedback, bypassing .device_busy won't cause big effect too since > > > blk-mq's SCHED_RESTART will retry this IO returning STS_RESOURCE only > > > after another in-flight one is completed. > > > > The reason we back off is that it allows the device to recover by > > temporarily reducing its workload. In addition, the lower queue depth > > alleviates the risk of commands timing out leading to application I/O > > failures. > > The timeout risk may only happen when driver/device doesn't return > congestion feedback, meantime the host queue depth is big enough. > > So far we don't see such issue on NVMe which hw queue depth is 1023, and > the hw queue count is often 32+, and not see such timeout report > when there are so many inflight IOs(32 * 1023) on single LUN. > > Also megaraid sas's queue depth is much less than (32 * 1023), so it > seems much unlikely to happen. > > Megaraid guys, could you clarify if it is one issue? Kashyap, Sumit > and Shivasharan? Hi Ming, Martin, megaraid_sas driver does not enable “.track_queue_depth”, so megaraid_sas adapters never used QUEUE FULL interface of Linux SCSI layer. Most of the handling of QUEUE FULL is managed by MegaRAID controller Firmware and it also manages reducing drive level QD (like ramp up/down). "mpt3sas" adapters support QUEUE FULL based on IOCCapabilities of Firmware. Default configuration is Firmware will manage QUEUE FULL. This is not same as Linux SCSI level handling. It is delayed retry in Firmware. It means, we should not expect IO timeout in case of QUEUE FULL from device since firmware can handle it as delayed retry. User can disable Firmware handling QUEUE FULL condition (through customized firmware) and allow QUEUE FULL return back to SCSI layer. This feature is called “MPI2_IOCFACTS_CAPABILITY_TASK_SET_FULL_HANDLING”. So for mpt3sas driver, we may use QUEUE FULL handling of OS. We can opt to enable “no_device_queue_for_ssd” for mpt3sas driver only if FW does not expose MPI2_IOCFACTS_CAPABILITY_TASK_SET_FULL_HANDLING. Thanks, Sumit > > > > > > At least, Broadcom guys tests this patch on megaraid raid and the > > > results shows that big improvement was got, that is why the flag is > > > only set on megaraid host. > > > > I do not question that it improves performance. That's not my point. > > > > > In theory, .track_queue_depth may only improve sequential IO's > > > performance for HDD., not very effective for SSD. Or just save a bit > > > CPU cycles in case of SSD. > > > > This is not about performance. This is about how the system behaves when > > a device is starved for resources or experiencing transient failures. > > Could you explain a bit how this patch changes the system beaviror? I > understand the EH just retries the incompleted requests, which total > number is just less than host queue depth. > > > Thanks, > Ming >