1. 23 12月, 2014 1 次提交
  2. 12 12月, 2014 2 次提交
    • J
      NVMe: fix race condition in nvme_submit_sync_cmd() · 849c6e77
      Jens Axboe 提交于
      If we have a race between the schedule timing out and the command
      completing, we could have the task issuing the command exit
      nvme_submit_sync_cmd() while the irq is running sync_completion().
      If that happens, we could be corrupting memory, since the stack
      that held 'cmdinfo' is no longer valid.
      
      Fix this by always calling nvme_abort_cmd_info(). Once that call
      completes, we know that we have either run sync_completion() if
      the completion came in, or that we will never run it since we now
      have special_completion() as the command callback handler.
      Acked-by: NKeith Busch <keith.busch@intel.com>
      Signed-off-by: NJens Axboe <axboe@fb.com>
      849c6e77
    • J
      NVMe: fix retry/error logic in nvme_queue_rq() · fe54303e
      Jens Axboe 提交于
      The logic around retrying and erroring IO in nvme_queue_rq() is broken
      in a few ways:
      
      - If we fail allocating dma memory for a discard, we return retry. We
        have the 'iod' stored in ->special, but we free the 'iod'.
      
      - For a normal request, if we fail dma mapping of setting up prps, we
        have the same iod situation. Additionally, we haven't set the callback
        for the request yet, so we also potentially leak IOMMU resources.
      
      Get rid of the ->special 'iod' store. The retry is uncommon enough that
      it's not worth optimizing for or holding on to resources to attempt to
      speed it up. Additionally, it's usually best practice to free any
      request related resources when doing retries.
      Acked-by: NKeith Busch <keith.busch@intel.com>
      Signed-off-by: NJens Axboe <axboe@fb.com>
      fe54303e
  3. 11 12月, 2014 3 次提交
  4. 04 12月, 2014 1 次提交
  5. 22 11月, 2014 1 次提交
  6. 21 11月, 2014 2 次提交
  7. 20 11月, 2014 1 次提交
  8. 18 11月, 2014 3 次提交
  9. 11 11月, 2014 1 次提交
  10. 06 11月, 2014 1 次提交
  11. 05 11月, 2014 24 次提交