aboutsummaryrefslogtreecommitdiff
path: root/block/nbd.c
diff options
context:
space:
mode:
authorHanna Reitz <hreitz@redhat.com>2022-02-04 12:10:07 +0100
committerVladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>2022-02-11 14:05:59 +0100
commit717be9644b25341517a8a3377a5f773fa902810b (patch)
tree321c3ebfee90cf2f8df051b42b1a5a2408acca19 /block/nbd.c
parent3ce1fc16bad9c3f8b7b10b451a224d6d76e5c551 (diff)
downloadqemu-717be9644b25341517a8a3377a5f773fa902810b.zip
qemu-717be9644b25341517a8a3377a5f773fa902810b.tar.gz
qemu-717be9644b25341517a8a3377a5f773fa902810b.tar.bz2
block/nbd: Delete open timer when done
We start the open timer to cancel the connection attempt after a while. Once nbd_do_establish_connection() has returned, the attempt is over, and we no longer need the timer. Delete it before returning from nbd_open(), so that it does not persist for longer. It has no use after nbd_open(), and just like the reconnect delay timer, it might well be dangerous if it were to fire afterwards. Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> Signed-off-by: Hanna Reitz <hreitz@redhat.com> Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Diffstat (limited to 'block/nbd.c')
-rw-r--r--block/nbd.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/block/nbd.c b/block/nbd.c
index 16cd7fe..5ff8a57 100644
--- a/block/nbd.c
+++ b/block/nbd.c
@@ -1885,11 +1885,19 @@ static int nbd_open(BlockDriverState *bs, QDict *options, int flags,
goto fail;
}
+ /*
+ * The connect attempt is done, so we no longer need this timer.
+ * Delete it, because we do not want it to be around when this node
+ * is drained or closed.
+ */
+ open_timer_del(s);
+
nbd_client_connection_enable_retry(s->conn);
return 0;
fail:
+ open_timer_del(s);
nbd_clear_bdrvstate(bs);
return ret;
}