From 7c895092a7390328fe9e281a24677a5a61f59e5d Mon Sep 17 00:00:00 2001 From: Christopher Faulet Date: Thu, 5 Mar 2026 17:57:51 +0100 Subject: [PATCH] MINOR: stconn: Wakup the SC with TASK_WOKEN_IO state from opposite side When a SC is woken up by the opposite side, in inter stream-connector calls, TASK_WOKEN_IO state is now used. --- src/stconn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stconn.c b/src/stconn.c index d2330f1ab..0c641e50f 100644 --- a/src/stconn.c +++ b/src/stconn.c @@ -876,7 +876,7 @@ static void sc_app_chk_rcv_conn(struct stconn *sc) /* (re)start reading */ if (sc_state_in(sc->state, SC_SB_CON|SC_SB_RDY|SC_SB_EST)) - tasklet_wakeup(sc->wait_event.tasklet); + tasklet_wakeup(sc->wait_event.tasklet, TASK_WOKEN_IO); } -- 2.47.3