NAS-139155 / None / nvme-pci: use NSSR to avoid CAP.TO and optimize timeout handling #238
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Reduce hung device recovery time using
NSSRand optimized timeouts:NSSRon hotplug-capable slots for fast device removaladmin_timeout)CAP.TOby checking controller stateCAP.TO)DEADstateNSSR path (NSSR supported + hotplug-capable):
After io_timeout (30s), trigger NSSR which causes PCIe link down. pciehp detects link state change and calls nvme_remove() for immediate device removal. Total recovery time: ~30s.
Non-NSSR path (NSSR not supported or non-hotplug slot):
After
io_timeout(30s), proceed with controller reset. Hung device detection after firstCAP.TOprevents secondCAP.TOwait inreset_work(). With defaultCAP.TO(~45s), total recovery time: ~75s.Previously, hung device recovery took
io_timeout×2+admin_timeout+CAP.TO×2. With defaults (io_timeout=30s, admin_timeout=60s, CAP.TO=45s), this was ~210s.Namespace removal for hung devices cleans up stale block devices that previously remained visible despite dead controller, enabling proper drive replacement workflows.
Testing