mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-22 14:41:27 +00:00
tcp: remove header prediction
Like prequeue, I am not sure this is overly useful nowadays. If we receive a train of packets, GRO will aggregate them if the headers are the same (HP predates GRO by several years) so we don't get a per-packet benefit, only a per-aggregated-packet one. Signed-off-by: Florian Westphal <fw@strlen.de> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
b6690b1438
commit
45f119bf93
6 changed files with 10 additions and 219 deletions
|
@ -147,12 +147,6 @@ struct tcp_sock {
|
|||
u16 tcp_header_len; /* Bytes of tcp header to send */
|
||||
u16 gso_segs; /* Max number of segs per GSO packet */
|
||||
|
||||
/*
|
||||
* Header prediction flags
|
||||
* 0x5?10 << 16 + snd_wnd in net byte order
|
||||
*/
|
||||
__be32 pred_flags;
|
||||
|
||||
/*
|
||||
* RFC793 variables by their proper names. This means you can
|
||||
* read the code and the spec side by side (and laugh ...)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue