Blame SOURCES/kvm-block-nbd-client-rename-read_reply_co-to-connection_.patch

383d26
From 309faf75d981afc47f5890bbf65e5251c01249ef Mon Sep 17 00:00:00 2001
383d26
From: John Snow <jsnow@redhat.com>
383d26
Date: Wed, 27 Mar 2019 17:23:03 +0100
383d26
Subject: [PATCH 125/163] block/nbd-client: rename read_reply_co to
383d26
 connection_co
383d26
383d26
RH-Author: John Snow <jsnow@redhat.com>
383d26
Message-id: <20190327172308.31077-51-jsnow@redhat.com>
383d26
Patchwork-id: 85221
383d26
O-Subject: [RHEL-7.7 qemu-kvm-rhev PATCH 50/55] block/nbd-client: rename read_reply_co to connection_co
383d26
Bugzilla: 1691009
383d26
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
383d26
RH-Acked-by: Max Reitz <mreitz@redhat.com>
383d26
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
383d26
383d26
From: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
383d26
383d26
This coroutine will serve nbd reconnects, so, rename it to be something
383d26
more generic.
383d26
383d26
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
383d26
Reviewed-by: Eric Blake <eblake@redhat.com>
383d26
Message-Id: <20190201130138.94525-7-vsementsov@virtuozzo.com>
383d26
Signed-off-by: Eric Blake <eblake@redhat.com>
383d26
(cherry picked from commit bc5a03350c220698229e7d6929dd242d5d358345)
383d26
Signed-off-by: John Snow <jsnow@redhat.com>
383d26
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
383d26
---
383d26
 block/nbd-client.c | 24 ++++++++++++------------
383d26
 block/nbd-client.h |  4 ++--
383d26
 2 files changed, 14 insertions(+), 14 deletions(-)
383d26
383d26
diff --git a/block/nbd-client.c b/block/nbd-client.c
383d26
index 5f3a67f..1230850 100644
383d26
--- a/block/nbd-client.c
383d26
+++ b/block/nbd-client.c
383d26
@@ -59,7 +59,7 @@ static void nbd_teardown_connection(BlockDriverState *bs)
383d26
     qio_channel_shutdown(client->ioc,
383d26
                          QIO_CHANNEL_SHUTDOWN_BOTH,
383d26
                          NULL);
383d26
-    BDRV_POLL_WHILE(bs, client->read_reply_co);
383d26
+    BDRV_POLL_WHILE(bs, client->connection_co);
383d26
 
383d26
     nbd_client_detach_aio_context(bs);
383d26
     object_unref(OBJECT(client->sioc));
383d26
@@ -68,7 +68,7 @@ static void nbd_teardown_connection(BlockDriverState *bs)
383d26
     client->ioc = NULL;
383d26
 }
383d26
 
383d26
-static coroutine_fn void nbd_read_reply_entry(void *opaque)
383d26
+static coroutine_fn void nbd_connection_entry(void *opaque)
383d26
 {
383d26
     NBDClientSession *s = opaque;
383d26
     uint64_t i;
383d26
@@ -100,14 +100,14 @@ static coroutine_fn void nbd_read_reply_entry(void *opaque)
383d26
         }
383d26
 
383d26
         /* We're woken up again by the request itself.  Note that there
383d26
-         * is no race between yielding and reentering read_reply_co.  This
383d26
+         * is no race between yielding and reentering connection_co.  This
383d26
          * is because:
383d26
          *
383d26
          * - if the request runs on the same AioContext, it is only
383d26
          *   entered after we yield
383d26
          *
383d26
          * - if the request runs on a different AioContext, reentering
383d26
-         *   read_reply_co happens through a bottom half, which can only
383d26
+         *   connection_co happens through a bottom half, which can only
383d26
          *   run after we yield.
383d26
          */
383d26
         aio_co_wake(s->requests[i].coroutine);
383d26
@@ -116,7 +116,7 @@ static coroutine_fn void nbd_read_reply_entry(void *opaque)
383d26
 
383d26
     s->quit = true;
383d26
     nbd_recv_coroutines_wake_all(s);
383d26
-    s->read_reply_co = NULL;
383d26
+    s->connection_co = NULL;
383d26
 }
383d26
 
383d26
 static int nbd_co_send_request(BlockDriverState *bs,
383d26
@@ -419,7 +419,7 @@ static coroutine_fn int nbd_co_do_receive_one_chunk(
383d26
     }
383d26
     *request_ret = 0;
383d26
 
383d26
-    /* Wait until we're woken up by nbd_read_reply_entry.  */
383d26
+    /* Wait until we're woken up by nbd_connection_entry.  */
383d26
     s->requests[i].receiving = true;
383d26
     qemu_coroutine_yield();
383d26
     s->requests[i].receiving = false;
383d26
@@ -494,7 +494,7 @@ static coroutine_fn int nbd_co_do_receive_one_chunk(
383d26
 }
383d26
 
383d26
 /* nbd_co_receive_one_chunk
383d26
- * Read reply, wake up read_reply_co and set s->quit if needed.
383d26
+ * Read reply, wake up connection_co and set s->quit if needed.
383d26
  * Return value is a fatal error code or normal nbd reply error code
383d26
  */
383d26
 static coroutine_fn int nbd_co_receive_one_chunk(
383d26
@@ -508,15 +508,15 @@ static coroutine_fn int nbd_co_receive_one_chunk(
383d26
     if (ret < 0) {
383d26
         s->quit = true;
383d26
     } else {
383d26
-        /* For assert at loop start in nbd_read_reply_entry */
383d26
+        /* For assert at loop start in nbd_connection_entry */
383d26
         if (reply) {
383d26
             *reply = s->reply;
383d26
         }
383d26
         s->reply.handle = 0;
383d26
     }
383d26
 
383d26
-    if (s->read_reply_co) {
383d26
-        aio_co_wake(s->read_reply_co);
383d26
+    if (s->connection_co) {
383d26
+        aio_co_wake(s->connection_co);
383d26
     }
383d26
 
383d26
     return ret;
383d26
@@ -969,7 +969,7 @@ void nbd_client_attach_aio_context(BlockDriverState *bs,
383d26
 {
383d26
     NBDClientSession *client = nbd_get_client_session(bs);
383d26
     qio_channel_attach_aio_context(QIO_CHANNEL(client->ioc), new_context);
383d26
-    aio_co_schedule(new_context, client->read_reply_co);
383d26
+    aio_co_schedule(new_context, client->connection_co);
383d26
 }
383d26
 
383d26
 void nbd_client_close(BlockDriverState *bs)
383d26
@@ -1074,7 +1074,7 @@ static int nbd_client_connect(BlockDriverState *bs,
383d26
     /* Now that we're connected, set the socket to be non-blocking and
383d26
      * kick the reply mechanism.  */
383d26
     qio_channel_set_blocking(QIO_CHANNEL(sioc), false, NULL);
383d26
-    client->read_reply_co = qemu_coroutine_create(nbd_read_reply_entry, client);
383d26
+    client->connection_co = qemu_coroutine_create(nbd_connection_entry, client);
383d26
     nbd_client_attach_aio_context(bs, bdrv_get_aio_context(bs));
383d26
 
383d26
     logout("Established connection with NBD server\n");
383d26
diff --git a/block/nbd-client.h b/block/nbd-client.h
383d26
index 2f047ba..d990207 100644
383d26
--- a/block/nbd-client.h
383d26
+++ b/block/nbd-client.h
383d26
@@ -20,7 +20,7 @@
383d26
 typedef struct {
383d26
     Coroutine *coroutine;
383d26
     uint64_t offset;        /* original offset of the request */
383d26
-    bool receiving;         /* waiting for read_reply_co? */
383d26
+    bool receiving;         /* waiting for connection_co? */
383d26
 } NBDClientRequest;
383d26
 
383d26
 typedef struct NBDClientSession {
383d26
@@ -30,7 +30,7 @@ typedef struct NBDClientSession {
383d26
 
383d26
     CoMutex send_mutex;
383d26
     CoQueue free_sema;
383d26
-    Coroutine *read_reply_co;
383d26
+    Coroutine *connection_co;
383d26
     int in_flight;
383d26
 
383d26
     NBDClientRequest requests[MAX_NBD_REQUESTS];
383d26
-- 
383d26
1.8.3.1
383d26