From: Olivier Houchard Date: Fri, 25 Apr 2025 11:03:29 +0000 (+0200) Subject: MEDIUM: quic: Make sure we return the tasklet from quic_accept_run X-Git-Tag: v3.2-dev13~77 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=09f5501bb9a9652d06c5b2b1b87973cdcb8a3c6b;p=thirdparty%2Fhaproxy.git MEDIUM: quic: Make sure we return the tasklet from quic_accept_run In quic_accept_run, return the tasklet to tell the scheduler the tasklet is still alive, it is not yet needed, but will be soon. --- diff --git a/src/quic_sock.c b/src/quic_sock.c index 1da0743f1..7af0bad54 100644 --- a/src/quic_sock.c +++ b/src/quic_sock.c @@ -1113,7 +1113,7 @@ struct task *quic_accept_run(struct task *t, void *ctx, unsigned int i) } } - return NULL; + return t; } /* Returns the maximum number of QUIC connections waiting for handshake to