Blame SOURCES/kvm-block-nbd-Delete-reconnect-delay-timer-when-done.patch

ff9ada
From 8e23c0f208c6bd5bb64c4f6e4863b93fa6f4e9de Mon Sep 17 00:00:00 2001
ff9ada
From: Hanna Reitz <hreitz@redhat.com>
ff9ada
Date: Fri, 4 Feb 2022 12:10:06 +0100
ff9ada
Subject: [PATCH 1/6] block/nbd: Delete reconnect delay timer when done
ff9ada
ff9ada
RH-Author: Hanna Reitz <hreitz@redhat.com>
ff9ada
RH-MergeRequest: 117: block/nbd: Handle AioContext changes
ff9ada
RH-Commit: [1/6] 70814602a8a43a7c14857d76266d82b1aa5174a9
ff9ada
RH-Bugzilla: 2035185
ff9ada
RH-Acked-by: Kevin Wolf <kwolf@redhat.com>
ff9ada
RH-Acked-by: Eric Blake <eblake@redhat.com>
ff9ada
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
ff9ada
ff9ada
We start the reconnect delay timer to cancel the reconnection attempt
ff9ada
after a while.  Once nbd_co_do_establish_connection() has returned, this
ff9ada
attempt is over, and we no longer need the timer.
ff9ada
ff9ada
Delete it before returning from nbd_reconnect_attempt(), so that it does
ff9ada
not persist beyond the I/O request that was paused for reconnecting; we
ff9ada
do not want it to fire in a drained section, because all sort of things
ff9ada
can happen in such a section (e.g. the AioContext might be changed, and
ff9ada
we do not want the timer to fire in the wrong context; or the BDS might
ff9ada
even be deleted, and so the timer CB would access already-freed data).
ff9ada
ff9ada
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
ff9ada
Signed-off-by: Hanna Reitz <hreitz@redhat.com>
ff9ada
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
ff9ada
(cherry picked from commit 3ce1fc16bad9c3f8b7b10b451a224d6d76e5c551)
ff9ada
Signed-off-by: Hanna Reitz <hreitz@redhat.com>
ff9ada
---
ff9ada
 block/nbd.c | 7 +++++++
ff9ada
 1 file changed, 7 insertions(+)
ff9ada
ff9ada
diff --git a/block/nbd.c b/block/nbd.c
ff9ada
index 5ef462db1b..b8e5a9b4cc 100644
ff9ada
--- a/block/nbd.c
ff9ada
+++ b/block/nbd.c
ff9ada
@@ -353,6 +353,13 @@ static coroutine_fn void nbd_reconnect_attempt(BDRVNBDState *s)
ff9ada
     }
ff9ada
 
ff9ada
     nbd_co_do_establish_connection(s->bs, NULL);
ff9ada
+
ff9ada
+    /*
ff9ada
+     * The reconnect attempt is done (maybe successfully, maybe not), so
ff9ada
+     * we no longer need this timer.  Delete it so it will not outlive
ff9ada
+     * this I/O request (so draining removes all timers).
ff9ada
+     */
ff9ada
+    reconnect_delay_timer_del(s);
ff9ada
 }
ff9ada
 
ff9ada
 static coroutine_fn int nbd_receive_replies(BDRVNBDState *s, uint64_t handle)
ff9ada
-- 
ff9ada
2.27.0
ff9ada