From: Christopher Faulet Date: Thu, 5 Mar 2026 15:07:58 +0000 (+0100) Subject: BUG/MINOR: stconn: Increase SC bytes_out value in se_done_ff() X-Git-Tag: v3.4-dev7~130 X-Git-Url: http://git.kaiwu.me/postgresql/log/contrib/postgres_fdw/postgres_fdw.c?a=commitdiff_plain;h=b48c9a14656272b7167752286ca6c21dd9a918c5;p=haproxy.git BUG/MINOR: stconn: Increase SC bytes_out value in se_done_ff() When data are sent via the zero-copy data forwarding, we must not forget to increase the stconn bytes_out value. This patch must be backport to 3.3. --- diff --git a/include/haproxy/stconn.h b/include/haproxy/stconn.h index 5a906e623..73e94c8f7 100644 --- a/include/haproxy/stconn.h +++ b/include/haproxy/stconn.h @@ -525,7 +525,7 @@ static inline size_t se_done_ff(struct sedesc *se) } } } - + se->sc->bytes_out += ret; return ret; }