From: Amaury Denoyelle Date: Tue, 11 Apr 2023 13:08:09 +0000 (+0200) Subject: MINOR: quic: remove uneeded tasklet_wakeup after accept X-Git-Tag: v2.8-dev8~116 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6ac0fb0f13978acfbb1d1284147e88a3328d3443;p=thirdparty%2Fhaproxy.git 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. --- diff --git a/src/xprt_quic.c b/src/xprt_quic.c index cfb93e7de2..16432dba8e 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);