From 6ac0fb0f13978acfbb1d1284147e88a3328d3443 Mon Sep 17 00:00:00 2001 From: Amaury Denoyelle Date: Tue, 11 Apr 2023 15:08:09 +0200 Subject: [PATCH] MINOR: quic: remove uneeded tasklet_wakeup after accept No need to explicitely wakeup quic-conn tasklet after accept is done. This should be backported up to 2.7. --- src/xprt_quic.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/xprt_quic.c b/src/xprt_quic.c index cfb93e7de..16432dba8 100644 --- a/src/xprt_quic.c +++ b/src/xprt_quic.c @@ -135,8 +135,6 @@ static int qc_xprt_start(struct connection *conn, void *ctx) /* mux-quic can now be considered ready. */ qc->mux_state = QC_MUX_READY; - tasklet_wakeup(qc->wait_event.tasklet); - ret = 1; out: TRACE_LEAVE(QUIC_EV_CONN_NEW, qc);