9ae3a8
From d5b3c858d7d2d96cf89495c95c2f07eb246b6730 Mon Sep 17 00:00:00 2001
9ae3a8
From: Kevin Wolf <kwolf@redhat.com>
9ae3a8
Date: Mon, 2 Dec 2013 15:07:48 +0100
9ae3a8
Subject: [PATCH 11/37] block: Introduce bdrv_aligned_preadv()
9ae3a8
9ae3a8
Message-id: <1392117622-28812-12-git-send-email-kwolf@redhat.com>
9ae3a8
Patchwork-id: 57176
9ae3a8
O-Subject: [RHEL-7.0 qemu-kvm PATCH v2 11/37] block: Introduce bdrv_aligned_preadv()
9ae3a8
Bugzilla: 748906
9ae3a8
RH-Acked-by: Laszlo Ersek <lersek@redhat.com>
9ae3a8
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
9ae3a8
RH-Acked-by: Max Reitz <mreitz@redhat.com>
9ae3a8
9ae3a8
This separates the part of bdrv_co_do_readv() that needs to happen
9ae3a8
before the request is modified to match the backend alignment, and a
9ae3a8
part that needs to be executed afterwards and passes the request to the
9ae3a8
BlockDriver.
9ae3a8
9ae3a8
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
9ae3a8
Reviewed-by: Wenchao Xia <xiawenc@linux.vnet.ibm.com>
9ae3a8
Reviewed-by: Max Reitz <mreitz@redhat.com>
9ae3a8
(cherry picked from commit d0c7f642f5eb2cb21d0c3acf766cb375eaaf4666)
9ae3a8
9ae3a8
Conflicts:
9ae3a8
	block.c
9ae3a8
9ae3a8
Conflicts because RHEL 7 still has the old I/O throttling code.
9ae3a8
9ae3a8
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
9ae3a8
---
9ae3a8
 block.c | 59 ++++++++++++++++++++++++++++++++++++++++++-----------------
9ae3a8
 1 file changed, 42 insertions(+), 17 deletions(-)
9ae3a8
---
9ae3a8
 block.c |   59 ++++++++++++++++++++++++++++++++++++++++++-----------------
9ae3a8
 1 files changed, 42 insertions(+), 17 deletions(-)
9ae3a8
9ae3a8
diff --git a/block.c b/block.c
9ae3a8
index 40a4a34..1787ab0 100644
9ae3a8
--- a/block.c
9ae3a8
+++ b/block.c
9ae3a8
@@ -2723,31 +2723,24 @@ err:
9ae3a8
 }
9ae3a8
 
9ae3a8
 /*
9ae3a8
- * Handle a read request in coroutine context
9ae3a8
+ * Forwards an already correctly aligned request to the BlockDriver. This
9ae3a8
+ * handles copy on read and zeroing after EOF; any other features must be
9ae3a8
+ * implemented by the caller.
9ae3a8
  */
9ae3a8
-static int coroutine_fn bdrv_co_do_readv(BlockDriverState *bs,
9ae3a8
-    int64_t sector_num, int nb_sectors, QEMUIOVector *qiov,
9ae3a8
-    BdrvRequestFlags flags)
9ae3a8
+static int coroutine_fn bdrv_aligned_preadv(BlockDriverState *bs,
9ae3a8
+    int64_t offset, unsigned int bytes, QEMUIOVector *qiov, int flags)
9ae3a8
 {
9ae3a8
     BlockDriver *drv = bs->drv;
9ae3a8
     BdrvTrackedRequest req;
9ae3a8
     int ret;
9ae3a8
 
9ae3a8
-    if (!drv) {
9ae3a8
-        return -ENOMEDIUM;
9ae3a8
-    }
9ae3a8
-    if (bdrv_check_request(bs, sector_num, nb_sectors)) {
9ae3a8
-        return -EIO;
9ae3a8
-    }
9ae3a8
+    int64_t sector_num = offset >> BDRV_SECTOR_BITS;
9ae3a8
+    unsigned int nb_sectors = bytes >> BDRV_SECTOR_BITS;
9ae3a8
 
9ae3a8
-    /* throttling disk read I/O */
9ae3a8
-    if (bs->io_limits_enabled) {
9ae3a8
-        bdrv_io_limits_intercept(bs, false, nb_sectors);
9ae3a8
-    }
9ae3a8
+    assert((offset & (BDRV_SECTOR_SIZE - 1)) == 0);
9ae3a8
+    assert((bytes & (BDRV_SECTOR_SIZE - 1)) == 0);
9ae3a8
 
9ae3a8
-    if (bs->copy_on_read) {
9ae3a8
-        flags |= BDRV_REQ_COPY_ON_READ;
9ae3a8
-    }
9ae3a8
+    /* Handle Copy on Read and associated serialisation */
9ae3a8
     if (flags & BDRV_REQ_COPY_ON_READ) {
9ae3a8
         bs->copy_on_read_in_flight++;
9ae3a8
     }
9ae3a8
@@ -2772,6 +2765,7 @@ static int coroutine_fn bdrv_co_do_readv(BlockDriverState *bs,
9ae3a8
         }
9ae3a8
     }
9ae3a8
 
9ae3a8
+    /* Forward the request to the BlockDriver */
9ae3a8
     if (!(bs->zero_beyond_eof && bs->growable)) {
9ae3a8
         ret = drv->bdrv_co_readv(bs, sector_num, nb_sectors, qiov);
9ae3a8
     } else {
9ae3a8
@@ -2812,6 +2806,37 @@ out:
9ae3a8
     return ret;
9ae3a8
 }
9ae3a8
 
9ae3a8
+/*
9ae3a8
+ * Handle a read request in coroutine context
9ae3a8
+ */
9ae3a8
+static int coroutine_fn bdrv_co_do_readv(BlockDriverState *bs,
9ae3a8
+    int64_t sector_num, int nb_sectors, QEMUIOVector *qiov,
9ae3a8
+    BdrvRequestFlags flags)
9ae3a8
+{
9ae3a8
+    BlockDriver *drv = bs->drv;
9ae3a8
+    int ret;
9ae3a8
+
9ae3a8
+    if (!drv) {
9ae3a8
+        return -ENOMEDIUM;
9ae3a8
+    }
9ae3a8
+    if (bdrv_check_request(bs, sector_num, nb_sectors)) {
9ae3a8
+        return -EIO;
9ae3a8
+    }
9ae3a8
+
9ae3a8
+    if (bs->copy_on_read) {
9ae3a8
+        flags |= BDRV_REQ_COPY_ON_READ;
9ae3a8
+    }
9ae3a8
+
9ae3a8
+    /* throttling disk I/O */
9ae3a8
+    if (bs->io_limits_enabled) {
9ae3a8
+        bdrv_io_limits_intercept(bs, false, nb_sectors);
9ae3a8
+    }
9ae3a8
+
9ae3a8
+    ret = bdrv_aligned_preadv(bs, sector_num << BDRV_SECTOR_BITS,
9ae3a8
+                             nb_sectors << BDRV_SECTOR_BITS, qiov, flags);
9ae3a8
+    return ret;
9ae3a8
+}
9ae3a8
+
9ae3a8
 int coroutine_fn bdrv_co_readv(BlockDriverState *bs, int64_t sector_num,
9ae3a8
     int nb_sectors, QEMUIOVector *qiov)
9ae3a8
 {
9ae3a8
-- 
9ae3a8
1.7.1
9ae3a8