From 8f70f9c04b770855549fb79bea5a1c07419fce0b Mon Sep 17 00:00:00 2001 From: Olivier Houchard Date: Fri, 25 Apr 2025 13:01:15 +0200 Subject: [PATCH] MEDIUM: mux_fcgi: Make sure we return the tasklet from fcgi_deferred_shut In fcgi_deferred_shut, return the tasklet to tell the scheduler the tasklet is still alive, it is not yet needed, but will be soon. --- src/mux_fcgi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mux_fcgi.c b/src/mux_fcgi.c index 7c67c32fc..53d8f6b8c 100644 --- a/src/mux_fcgi.c +++ b/src/mux_fcgi.c @@ -3940,7 +3940,7 @@ struct task *fcgi_deferred_shut(struct task *t, void *ctx, unsigned int state) } end: TRACE_LEAVE(FCGI_EV_STRM_SHUT); - return NULL; + return t; } static void fcgi_shut(struct stconn *sc, unsigned int mode, struct se_abort_info *reason) -- 2.47.2