0a122b
From 707398814bf924b6c430a49897171d1322011bff Mon Sep 17 00:00:00 2001
0a122b
From: Kevin Wolf <kwolf@redhat.com>
0a122b
Date: Thu, 26 Sep 2013 19:55:33 +0800
0a122b
Subject: [PATCH 18/37] block: use DIV_ROUND_UP in bdrv_co_do_readv
0a122b
0a122b
Message-id: <1392117622-28812-19-git-send-email-kwolf@redhat.com>
0a122b
Patchwork-id: 57183
0a122b
O-Subject: [RHEL-7.0 qemu-kvm PATCH v2 18/37] block: use DIV_ROUND_UP in bdrv_co_do_readv
0a122b
Bugzilla: 748906
0a122b
RH-Acked-by: Laszlo Ersek <lersek@redhat.com>
0a122b
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
0a122b
RH-Acked-by: Max Reitz <mreitz@redhat.com>
0a122b
0a122b
From: Fam Zheng <famz@redhat.com>
0a122b
0a122b
Signed-off-by: Fam Zheng <famz@redhat.com>
0a122b
Reviewed-by: Eric Blake <eblake@redhat.com>
0a122b
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
0a122b
(cherry picked from commit d055a1fec37ec84fd3e87d48a0e766a9ff8369c4)
0a122b
0a122b
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
0a122b
---
0a122b
 block.c | 2 +-
0a122b
 1 file changed, 1 insertion(+), 1 deletion(-)
0a122b
---
0a122b
 block.c |    2 +-
0a122b
 1 files changed, 1 insertions(+), 1 deletions(-)
0a122b
0a122b
diff --git a/block.c b/block.c
0a122b
index 645bcd0..feeab4e 100644
0a122b
--- a/block.c
0a122b
+++ b/block.c
0a122b
@@ -2795,7 +2795,7 @@ static int coroutine_fn bdrv_aligned_preadv(BlockDriverState *bs,
0a122b
             goto out;
0a122b
         }
0a122b
 
0a122b
-        total_sectors = (len + BDRV_SECTOR_SIZE - 1) >> BDRV_SECTOR_BITS;
0a122b
+        total_sectors = DIV_ROUND_UP(len, BDRV_SECTOR_SIZE);
0a122b
         max_nb_sectors = MAX(0, total_sectors - sector_num);
0a122b
         if (max_nb_sectors > 0) {
0a122b
             ret = drv->bdrv_co_readv(bs, sector_num,
0a122b
-- 
0a122b
1.7.1
0a122b