Blame SOURCES/kvm-qcow2-Remove-coroutine-trampoline-for-preallocate_co.patch

ae23c9
From 8757520d53257c284c3042279488ec1d00e280c3 Mon Sep 17 00:00:00 2001
ae23c9
From: Kevin Wolf <kwolf@redhat.com>
ae23c9
Date: Thu, 12 Jul 2018 14:42:55 +0200
ae23c9
Subject: [PATCH 210/268] qcow2: Remove coroutine trampoline for
ae23c9
 preallocate_co()
ae23c9
ae23c9
RH-Author: Kevin Wolf <kwolf@redhat.com>
ae23c9
Message-id: <20180712144258.17303-4-kwolf@redhat.com>
ae23c9
Patchwork-id: 81329
ae23c9
O-Subject: [RHV-7.6 qemu-kvm-rhev PATCH 3/6] qcow2: Remove coroutine trampoline for preallocate_co()
ae23c9
Bugzilla: 1595173
ae23c9
RH-Acked-by: Max Reitz <mreitz@redhat.com>
ae23c9
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
ae23c9
RH-Acked-by: John Snow <jsnow@redhat.com>
ae23c9
ae23c9
All callers are coroutine_fns now, so we can just directly call
ae23c9
preallocate_co().
ae23c9
ae23c9
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
ae23c9
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
ae23c9
(cherry picked from commit 47e86b868d57ffe13162ca44e5f6a51c15c4a769)
ae23c9
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
ae23c9
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
ae23c9
---
ae23c9
 block/qcow2.c | 51 ++++++++-------------------------------------------
ae23c9
 1 file changed, 8 insertions(+), 43 deletions(-)
ae23c9
ae23c9
diff --git a/block/qcow2.c b/block/qcow2.c
ae23c9
index c5c6ae9..71fbfcd 100644
ae23c9
--- a/block/qcow2.c
ae23c9
+++ b/block/qcow2.c
ae23c9
@@ -2517,15 +2517,6 @@ static int qcow2_set_up_encryption(BlockDriverState *bs,
ae23c9
     return ret;
ae23c9
 }
ae23c9
 
ae23c9
-
ae23c9
-typedef struct PreallocCo {
ae23c9
-    BlockDriverState *bs;
ae23c9
-    uint64_t offset;
ae23c9
-    uint64_t new_length;
ae23c9
-
ae23c9
-    int ret;
ae23c9
-} PreallocCo;
ae23c9
-
ae23c9
 /**
ae23c9
  * Preallocates metadata structures for data clusters between @offset (in the
ae23c9
  * guest disk) and @new_length (which is thus generally the new guest disk
ae23c9
@@ -2533,12 +2524,9 @@ typedef struct PreallocCo {
ae23c9
  *
ae23c9
  * Returns: 0 on success, -errno on failure.
ae23c9
  */
ae23c9
-static void coroutine_fn preallocate_co(void *opaque)
ae23c9
+static int coroutine_fn preallocate_co(BlockDriverState *bs, uint64_t offset,
ae23c9
+                                       uint64_t new_length)
ae23c9
 {
ae23c9
-    PreallocCo *params = opaque;
ae23c9
-    BlockDriverState *bs = params->bs;
ae23c9
-    uint64_t offset = params->offset;
ae23c9
-    uint64_t new_length = params->new_length;
ae23c9
     uint64_t bytes;
ae23c9
     uint64_t host_offset = 0;
ae23c9
     unsigned int cur_bytes;
ae23c9
@@ -2553,7 +2541,7 @@ static void coroutine_fn preallocate_co(void *opaque)
ae23c9
         ret = qcow2_alloc_cluster_offset(bs, offset, &cur_bytes,
ae23c9
                                          &host_offset, &meta);
ae23c9
         if (ret < 0) {
ae23c9
-            goto done;
ae23c9
+            return ret;
ae23c9
         }
ae23c9
 
ae23c9
         while (meta) {
ae23c9
@@ -2563,7 +2551,7 @@ static void coroutine_fn preallocate_co(void *opaque)
ae23c9
             if (ret < 0) {
ae23c9
                 qcow2_free_any_clusters(bs, meta->alloc_offset,
ae23c9
                                         meta->nb_clusters, QCOW2_DISCARD_NEVER);
ae23c9
-                goto done;
ae23c9
+                return ret;
ae23c9
             }
ae23c9
 
ae23c9
             /* There are no dependent requests, but we need to remove our
ae23c9
@@ -2590,34 +2578,11 @@ static void coroutine_fn preallocate_co(void *opaque)
ae23c9
         ret = bdrv_pwrite(bs->file, (host_offset + cur_bytes) - 1,
ae23c9
                           &data, 1);
ae23c9
         if (ret < 0) {
ae23c9
-            goto done;
ae23c9
+            return ret;
ae23c9
         }
ae23c9
     }
ae23c9
 
ae23c9
-    ret = 0;
ae23c9
-
ae23c9
-done:
ae23c9
-    params->ret = ret;
ae23c9
-}
ae23c9
-
ae23c9
-static int preallocate(BlockDriverState *bs,
ae23c9
-                       uint64_t offset, uint64_t new_length)
ae23c9
-{
ae23c9
-    PreallocCo params = {
ae23c9
-        .bs         = bs,
ae23c9
-        .offset     = offset,
ae23c9
-        .new_length = new_length,
ae23c9
-        .ret        = -EINPROGRESS,
ae23c9
-    };
ae23c9
-
ae23c9
-    if (qemu_in_coroutine()) {
ae23c9
-        preallocate_co(&params);
ae23c9
-    } else {
ae23c9
-        Coroutine *co = qemu_coroutine_create(preallocate_co, &params);
ae23c9
-        bdrv_coroutine_enter(bs, co);
ae23c9
-        BDRV_POLL_WHILE(bs, params.ret == -EINPROGRESS);
ae23c9
-    }
ae23c9
-    return params.ret;
ae23c9
+    return 0;
ae23c9
 }
ae23c9
 
ae23c9
 /* qcow2_refcount_metadata_size:
ae23c9
@@ -3035,7 +3000,7 @@ qcow2_co_create(BlockdevCreateOptions *create_options, Error **errp)
ae23c9
     if (qcow2_opts->preallocation != PREALLOC_MODE_OFF) {
ae23c9
         BDRVQcow2State *s = blk_bs(blk)->opaque;
ae23c9
         qemu_co_mutex_lock(&s->lock);
ae23c9
-        ret = preallocate(blk_bs(blk), 0, qcow2_opts->size);
ae23c9
+        ret = preallocate_co(blk_bs(blk), 0, qcow2_opts->size);
ae23c9
         qemu_co_mutex_unlock(&s->lock);
ae23c9
 
ae23c9
         if (ret < 0) {
ae23c9
@@ -3544,7 +3509,7 @@ static int coroutine_fn qcow2_co_truncate(BlockDriverState *bs, int64_t offset,
ae23c9
         break;
ae23c9
 
ae23c9
     case PREALLOC_MODE_METADATA:
ae23c9
-        ret = preallocate(bs, old_length, offset);
ae23c9
+        ret = preallocate_co(bs, old_length, offset);
ae23c9
         if (ret < 0) {
ae23c9
             error_setg_errno(errp, -ret, "Preallocation failed");
ae23c9
             goto fail;
ae23c9
-- 
ae23c9
1.8.3.1
ae23c9