diff options
author | Florian Westphal <fw@strlen.de> | 2021-09-25 00:12:37 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-09-25 13:36:51 +0300 |
commit | 9e65b6a5aaa3236488b4f4e3e8b914d73124a5a5 (patch) | |
tree | 56cc227a68d6ef5b3e0e4b3f12231a21fada3e4a /Makefile | |
parent | 765ff425528f309b166978c4b295eb47ebefd47a (diff) | |
download | linux-9e65b6a5aaa3236488b4f4e3e8b914d73124a5a5.tar.xz |
mptcp: remove tx_pending_data
The update on recovery is not correct.
msk->tx_pending_data += msk->snd_nxt - rtx_head->data_seq;
will update tx_pending_data multiple times when a subflow is declared
stale while earlier recovery is still in progress.
This means that tx_pending_data will still be positive even after
all data as has been transmitted.
Rather than fix it, remove this field: there are no consumers.
The outstanding data byte count can be computed either via
"msk->write_seq - rtx_head->data_seq" or
"msk->write_seq - msk->snd_una".
The latter is more recent/accurate estimate as rtx_head adjustment
is deferred until mptcp lock can be acquired.
Acked-by: Paolo Abeni <pabeni@redhat.com>
Signed-off-by: Florian Westphal <fw@strlen.de>
Signed-off-by: Mat Martineau <mathew.j.martineau@linux.intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'Makefile')
0 files changed, 0 insertions, 0 deletions