aboutgitcodebugslistschat
diff options
context:
space:
mode:
-rw-r--r--tcp_splice.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/tcp_splice.c b/tcp_splice.c
index 5f41258..565596d 100644
--- a/tcp_splice.c
+++ b/tcp_splice.c
@@ -500,6 +500,8 @@ static int tcp_splice_forward(struct ctx *c,
if (!readlen) {
conn_event(conn, FIN_RCVD(fromsidei));
} else if (readlen > 0) {
+ conn->pending[fromsidei] += readlen;
+
if (readlen >= (long)c->tcp.pipe_size * 90 / 100)
more = SPLICE_F_MORE;
@@ -524,16 +526,11 @@ static int tcp_splice_forward(struct ctx *c,
flow_trace(conn, "%zi from write-side call (passed %zi)",
written, c->tcp.pipe_size);
- /* Most common case: skip updating count of pending bytes */
- if (readlen > 0 && readlen == written)
- continue;
-
- conn->pending[fromsidei] += readlen > 0 ? readlen : 0;
- conn->pending[fromsidei] -= written > 0 ? written : 0;
-
if (written < 0)
break;
+ conn->pending[fromsidei] -= written;
+
if (conn->events & FIN_RCVD(fromsidei) &&
!conn->pending[fromsidei])
break;