diff options
| author | David S. Miller <davem@davemloft.net> | 2021-03-11 18:35:31 -0800 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2021-03-11 18:35:31 -0800 |
| commit | 5215206d8b1574c4ba8915a61fe841c376d51ed2 (patch) | |
| tree | 7c530d5490a1fc493fd3df9483501b01bd040d3a /include/linux | |
| parent | 8176f8c0f095c9df44994a33f19b55e7c847df7f (diff) | |
| parent | ac3959fd0dcc0e49298ea5cadfe257db0e58ef8b (diff) | |
Merge branch 'tcp-delayed-completions'
Eric Dumazet says:
====================
tcp: better deal with delayed TX completions
Jakub and Neil reported an increase of RTO timers whenever
TX completions are delayed a bit more (by increasing
NIC TX coalescing parameters)
While problems have been there forever, second patch might
introduce some regressions so I prefer not backport
them to stable releases before things settle.
Many thanks to FB team for their help and tests.
Few packetdrill tests need to be changed to reflect
the improvements brought by this series.
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/skbuff.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index 0503c917d773..483e89348f78 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h @@ -1140,7 +1140,7 @@ static inline bool skb_fclone_busy(const struct sock *sk, return skb->fclone == SKB_FCLONE_ORIG && refcount_read(&fclones->fclone_ref) > 1 && - fclones->skb2.sk == sk; + READ_ONCE(fclones->skb2.sk) == sk; } /** |
