aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/nvme.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/nvme.h')
-rw-r--r--include/linux/nvme.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/linux/nvme.h b/include/linux/nvme.h
index 258945fcabf1..19a5d4b23209 100644
--- a/include/linux/nvme.h
+++ b/include/linux/nvme.h
@@ -132,13 +132,12 @@ struct nvme_ns {
132 * allocated to store the PRP list. 132 * allocated to store the PRP list.
133 */ 133 */
134struct nvme_iod { 134struct nvme_iod {
135 void *private; /* For the use of the submitter of the I/O */ 135 unsigned long private; /* For the use of the submitter of the I/O */
136 int npages; /* In the PRP list. 0 means small pool in use */ 136 int npages; /* In the PRP list. 0 means small pool in use */
137 int offset; /* Of PRP list */ 137 int offset; /* Of PRP list */
138 int nents; /* Used in scatterlist */ 138 int nents; /* Used in scatterlist */
139 int length; /* Of data, in bytes */ 139 int length; /* Of data, in bytes */
140 dma_addr_t first_dma; 140 dma_addr_t first_dma;
141 struct list_head node;
142 struct scatterlist sg[0]; 141 struct scatterlist sg[0];
143}; 142};
144 143