diff options
-rw-r--r-- | drivers/block/rbd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/block/rbd.c b/drivers/block/rbd.c index 1ac87f182057..52f9420704c7 100644 --- a/drivers/block/rbd.c +++ b/drivers/block/rbd.c | |||
@@ -826,8 +826,8 @@ static int rbd_req_sync_op(struct rbd_device *dev, | |||
826 | 826 | ||
827 | num_pages = calc_pages_for(ofs , len); | 827 | num_pages = calc_pages_for(ofs , len); |
828 | pages = ceph_alloc_page_vector(num_pages, GFP_KERNEL); | 828 | pages = ceph_alloc_page_vector(num_pages, GFP_KERNEL); |
829 | if (!pages) | 829 | if (IS_ERR(pages)) |
830 | return -ENOMEM; | 830 | return PTR_ERR(pages); |
831 | 831 | ||
832 | if (!orig_ops) { | 832 | if (!orig_ops) { |
833 | payload_len = (flags & CEPH_OSD_FLAG_WRITE ? len : 0); | 833 | payload_len = (flags & CEPH_OSD_FLAG_WRITE ? len : 0); |