block: nvme-scsi: Catch kcalloc failure
authorAxel Lin <axel.lin@ingics.com>
Sat, 20 Jun 2015 08:29:14 +0000 (16:29 +0800)
committerJens Axboe <axboe@fb.com>
Sat, 20 Jun 2015 16:34:07 +0000 (10:34 -0600)
res variable was initialized to -ENOMEM, but it's override by
nvme_trans_copy_from_user(). So current code returns 0 if kcalloc fails.
Fix it to return proper error code.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
drivers/block/nvme-scsi.c

index 8e6223e..ab6d1a0 100644 (file)
@@ -2375,7 +2375,7 @@ static int nvme_trans_unmap(struct nvme_ns *ns, struct sg_io_hdr *hdr,
        struct scsi_unmap_parm_list *plist;
        struct nvme_dsm_range *range;
        struct nvme_command c;
-       int i, nvme_sc, res = -ENOMEM;
+       int i, nvme_sc, res;
        u16 ndesc, list_len;
 
        list_len = get_unaligned_be16(&cmd[7]);
@@ -2397,8 +2397,10 @@ static int nvme_trans_unmap(struct nvme_ns *ns, struct sg_io_hdr *hdr,
        }
 
        range = kcalloc(ndesc, sizeof(*range), GFP_KERNEL);
-       if (!range)
+       if (!range) {
+               res = -ENOMEM;
                goto out;
+       }
 
        for (i = 0; i < ndesc; i++) {
                range[i].nlb = cpu_to_le32(be32_to_cpu(plist->desc[i].nlb));