net/mlx4_core: Fix wrong mask and error flow for the update-qp command
[sfrench/cifs-2.6.git] / include / linux / nvme.h
index 258945fcabf17c645b04b21501a79df0d4b0a0ea..19a5d4b23209302bc55cce74c12f69cbd91f260d 100644 (file)
@@ -132,13 +132,12 @@ struct nvme_ns {
  * allocated to store the PRP list.
  */
 struct nvme_iod {
-       void *private;          /* For the use of the submitter of the I/O */
+       unsigned long private;  /* For the use of the submitter of the I/O */
        int npages;             /* In the PRP list. 0 means small pool in use */
        int offset;             /* Of PRP list */
        int nents;              /* Used in scatterlist */
        int length;             /* Of data, in bytes */
        dma_addr_t first_dma;
-       struct list_head node;
        struct scatterlist sg[0];
 };