]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
nvme-pci: remove unused nvme_iod member
authorKeith Busch <keith.busch@intel.com>
Fri, 8 Mar 2019 17:43:13 +0000 (10:43 -0700)
committerChristoph Hellwig <hch@lst.de>
Fri, 5 Apr 2019 06:07:57 +0000 (08:07 +0200)
Signed-off-by: Keith Busch <keith.busch@intel.com>
Reviewed-by: Sagi Grimberg <sagi@grimberg.me>
Signed-off-by: Christoph Hellwig <hch@lst.de>
drivers/nvme/host/pci.c

index 8af2b10b45079ce6dc15b26b577e038768df5bcb..0cba927224b429e9403c6c88ab841ebeab37b62d 100644 (file)
@@ -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;
 }