aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/block/nvme.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/block/nvme.c b/drivers/block/nvme.c
index 0956e1241520..5843409cac6d 100644
--- a/drivers/block/nvme.c
+++ b/drivers/block/nvme.c
@@ -996,11 +996,11 @@ static int nvme_map_user_pages(struct nvme_dev *dev, int write,
996 996
997 sg = kcalloc(count, sizeof(*sg), GFP_KERNEL); 997 sg = kcalloc(count, sizeof(*sg), GFP_KERNEL);
998 sg_init_table(sg, count); 998 sg_init_table(sg, count);
999 sg_set_page(&sg[0], pages[0], PAGE_SIZE - offset, offset); 999 for (i = 0; i < count; i++) {
1000 length -= (PAGE_SIZE - offset); 1000 sg_set_page(&sg[i], pages[i],
1001 for (i = 1; i < count; i++) { 1001 min_t(int, length, PAGE_SIZE - offset), offset);
1002 sg_set_page(&sg[i], pages[i], min_t(int, length, PAGE_SIZE), 0); 1002 length -= (PAGE_SIZE - offset);
1003 length -= PAGE_SIZE; 1003 offset = 0;
1004 } 1004 }
1005 1005
1006 err = -ENOMEM; 1006 err = -ENOMEM;