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.
This commit is contained in:
Christopher Faulet 2026-03-05 16:07:58 +01:00
parent fcfabd0d90
commit b48c9a1465

View File

@ -525,7 +525,7 @@ static inline size_t se_done_ff(struct sedesc *se)
}
}
}
se->sc->bytes_out += ret;
return ret;
}