summaryrefslogtreecommitdiffstats
path: root/drivers/nvme/host/pci.c
diff options
context:
space:
mode:
authorKeith Busch2019-03-08 18:43:13 +0100
committerChristoph Hellwig2019-04-05 08:07:57 +0200
commit39f8e36401142d73e33a954ac4bdf844fb5de9ae (patch)
tree0004ca759b1bef55ae035167450626928b0ad49c /drivers/nvme/host/pci.c
parentnvme-pci: remove q_dmadev from nvme_queue (diff)
downloadkernel-qcow2-linux-39f8e36401142d73e33a954ac4bdf844fb5de9ae.tar.gz
kernel-qcow2-linux-39f8e36401142d73e33a954ac4bdf844fb5de9ae.tar.xz
kernel-qcow2-linux-39f8e36401142d73e33a954ac4bdf844fb5de9ae.zip
nvme-pci: remove unused nvme_iod member
Signed-off-by: Keith Busch <keith.busch@intel.com> Reviewed-by: Sagi Grimberg <sagi@grimberg.me> Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'drivers/nvme/host/pci.c')
-rw-r--r--drivers/nvme/host/pci.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/nvme/host/pci.c b/drivers/nvme/host/pci.c
index 8af2b10b4507..0cba927224b4 100644
--- a/drivers/nvme/host/pci.c
+++ b/drivers/nvme/host/pci.c
@@ -220,7 +220,6 @@ struct nvme_iod {
int aborted;
int npages; /* In the PRP list. 0 means small pool in use */
int nents; /* Used in scatterlist */
- int length; /* Of data, in bytes */
dma_addr_t first_dma;
struct scatterlist meta_sg; /* metadata requires single contiguous buffer */
struct scatterlist *sg;
@@ -603,7 +602,6 @@ static blk_status_t nvme_init_iod(struct request *rq, struct nvme_dev *dev)
iod->aborted = 0;
iod->npages = -1;
iod->nents = 0;
- iod->length = size;
return BLK_STS_OK;
}