projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a7a2563
)
net_sched: sch_fq: no longer use skb_is_tcp_pure_ack()
author
Eric Dumazet
<edumazet@google.com>
Mon, 15 Oct 2018 16:37:55 +0000
(09:37 -0700)
committer
David S. Miller
<davem@davemloft.net>
Tue, 16 Oct 2018 05:56:42 +0000
(22:56 -0700)
With the new EDT model, sch_fq no longer has to special
case TCP pure acks, since their skb->tstamp will allow them
being sent without pacing delay.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/sched/sch_fq.c
patch
|
blob
|
history
diff --git
a/net/sched/sch_fq.c
b/net/sched/sch_fq.c
index
3923d14
..
4b1af70
100644
(file)
--- a/
net/sched/sch_fq.c
+++ b/
net/sched/sch_fq.c
@@
-444,7
+444,7
@@
begin:
}
skb = f->head;
- if (skb
&& !skb_is_tcp_pure_ack(skb)
) {
+ if (skb) {
u64 time_next_packet = max_t(u64, ktime_to_ns(skb->tstamp),
f->time_next_packet);