]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
nvme: add missing endianess annotations in nvme_pr_command
authorChristoph Hellwig <hch@lst.de>
Thu, 22 Oct 2015 10:01:05 +0000 (12:01 +0200)
committerJens Axboe <axboe@fb.com>
Thu, 22 Oct 2015 15:15:48 +0000 (09:15 -0600)
Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Fixes: ad4fd3610c27 ("NVMe: Add persistent reservation ops")
Signed-off-by: Jens Axboe <axboe@fb.com>
drivers/nvme/host/pci.c

index 1fe3e27dace8e4b653254bb7e180124a32d0553b..17524fd3e95f80dab8e11ab3b38ae9e4334eb4bb 100644 (file)
@@ -2094,8 +2094,8 @@ static int nvme_pr_command(struct block_device *bdev, u32 cdw10,
 
        memset(&c, 0, sizeof(c));
        c.common.opcode = op;
-       c.common.nsid = ns->ns_id;
-       c.common.cdw10[0] = cdw10;
+       c.common.nsid = cpu_to_le32(ns->ns_id);
+       c.common.cdw10[0] = cpu_to_le32(cdw10);
 
        return nvme_submit_sync_cmd(ns->queue, &c, data, 16);
 }