]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
nvme: fix directive command numd calculation
authorKwan (Hingkwan) Huen-SSI <kwan.huen@samsung.com>
Wed, 9 Aug 2017 18:26:29 +0000 (11:26 -0700)
committerChristoph Hellwig <hch@lst.de>
Thu, 10 Aug 2017 17:53:44 +0000 (19:53 +0200)
The numd field of directive receive command takes number of dwords to
transfer. This fix has the correct calculation for numd.

Signed-off-by: Kwan (Hingkwan) Huen-SSI <kwan.huen@samsung.com>
Reviewed-by: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Christoph Hellwig <hch@lst.de>
drivers/nvme/host/core.c

index 6212cf4e9829ee0e8311f074bb11318cb580c889..37046ac2c4413a51b9a77864cdf9e434a6ac7bd6 100644 (file)
@@ -336,7 +336,7 @@ static int nvme_get_stream_params(struct nvme_ctrl *ctrl,
 
        c.directive.opcode = nvme_admin_directive_recv;
        c.directive.nsid = cpu_to_le32(nsid);
-       c.directive.numd = cpu_to_le32(sizeof(*s));
+       c.directive.numd = cpu_to_le32((sizeof(*s) >> 2) - 1);
        c.directive.doper = NVME_DIR_RCV_ST_OP_PARAM;
        c.directive.dtype = NVME_DIR_STREAMS;