Skip to content

Commit

Permalink
NVMe: Disk stats for read/write commands only
Browse files Browse the repository at this point in the history
Flush and discard requests would previously mess up the accounting.

Signed-off-by: Keith Busch <keith.busch@intel.com>
Signed-off-by: Matthew Wilcox <matthew.r.wilcox@intel.com>
  • Loading branch information
Keith Busch authored and Matthew Wilcox committed Sep 3, 2013
1 parent 7e03b12 commit 9e59d09
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/block/nvme-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -342,11 +342,11 @@ static void bio_completion(struct nvme_dev *dev, void *ctx,
struct bio *bio = iod->private;
u16 status = le16_to_cpup(&cqe->status) >> 1;

if (iod->nents)
if (iod->nents) {
dma_unmap_sg(&dev->pci_dev->dev, iod->sg, iod->nents,
bio_data_dir(bio) ? DMA_TO_DEVICE : DMA_FROM_DEVICE);

nvme_end_io_acct(bio, iod->start_time);
nvme_end_io_acct(bio, iod->start_time);
}
nvme_free_iod(dev, iod);
if (status)
bio_endio(bio, -EIO);
Expand Down

0 comments on commit 9e59d09

Please sign in to comment.