• M
    xhci: Fix failure to give back some cached cancelled URBs. · 94f33914
    Mathias Nyman 提交于
    Only TDs with status TD_CLEARING_CACHE will be given back after
    cache is cleared with a set TR deq command.
    
    xhci_invalidate_cached_td() failed to set the TD_CLEARING_CACHE status
    for some cancelled TDs as it assumed an endpoint only needs to clear the
    TD it stopped on.
    
    This isn't always true. For example with streams enabled an endpoint may
    have several stream rings, each stopping on a different TDs.
    
    Note that if an endpoint has several stream rings, the current code
    will still only clear the cache of the stream pointed to by the last
    cancelled TD in the cancel list.
    
    This patch only focus on making sure all canceled TDs are given back,
    avoiding hung task after device removal.
    Another fix to solve clearing the caches of all stream rings with
    cancelled TDs is needed, but not as urgent.
    
    This issue was simultanously discovered and debugged by
    by Tao Wang, with a slightly different fix proposal.
    
    Fixes: 674f8438 ("xhci: split handling halted endpoints into two steps")
    Cc: <stable@vger.kernel.org> #5.12
    Reported-by: NTao Wang <wat@codeaurora.org>
    Signed-off-by: NMathias Nyman <mathias.nyman@linux.intel.com>
    Link: https://lore.kernel.org/r/20210820123503.2605901-4-mathias.nyman@linux.intel.comSigned-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
    94f33914
xhci-ring.c 130.5 KB