• K
    NVMe: Fix reset/remove race · 87c32077
    Keith Busch 提交于
    This fixes a scenario where device is present and being reset, but a
    request to unbind the driver occurs.
    
    A previous patch series addressing a device failure removal scenario
    flushed reset_work after controller disable to unblock reset_work waiting
    on a completion that wouldn't occur. This isn't safe as-is. The broken
    scenario can potentially be induced with:
    
      modprobe nvme && modprobe -r nvme
    
    To fix, the reset work is flushed immediately after setting the controller
    removing flag, and any subsequent reset will not proceed with controller
    initialization if the flag is set.
    
    The controller status must be polled while active, so the watchdog timer
    is also left active until the controller is disabled to cleanup requests
    that may be stuck during namespace removal.
    
    [Fixes: ff23a2a1]
    Signed-off-by: NKeith Busch <keith.busch@intel.com>
    Reviewed-by: NChristoph Hellwig <hch@lst.de>
    Reviewed-by: NJohannes Thumshirn <jthumshirn@suse.de>
    Reviewed-by: NSagi Grimberg <sagi@grimberg.me>
    Signed-off-by: NJens Axboe <axboe@fb.com>
    87c32077
pci.c 53.5 KB