aboutsummaryrefslogtreecommitdiffstats
path: root/net/sched/sch_fq.c
diff options
context:
space:
mode:
authorEric Dumazet <edumazet@google.com>2013-10-27 16:26:43 -0700
committerDavid S. Miller <davem@davemloft.net>2013-10-28 00:18:31 -0400
commitfc59d5bdf1e3dca0336d155e55d812286db075ad (patch)
tree647350005b677b64cdfbea97d396245c74f9514a /net/sched/sch_fq.c
parentDocumentation/networking: netdev-FAQ typo corrections (diff)
downloadlinux-dev-fc59d5bdf1e3dca0336d155e55d812286db075ad.tar.xz
linux-dev-fc59d5bdf1e3dca0336d155e55d812286db075ad.zip
pkt_sched: fq: clear time_next_packet for reused flows
When a socket is freed/reallocated, we need to clear time_next_packet or else we can inherit a prior value and delay first packets of the new flow. Signed-off-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/sch_fq.c')
-rw-r--r--net/sched/sch_fq.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/sched/sch_fq.c b/net/sched/sch_fq.c
index a9dfdda9ed1d..fdc041c57853 100644
--- a/net/sched/sch_fq.c
+++ b/net/sched/sch_fq.c
@@ -255,6 +255,7 @@ static struct fq_flow *fq_classify(struct sk_buff *skb, struct fq_sched_data *q)
f->socket_hash != sk->sk_hash)) {
f->credit = q->initial_quantum;
f->socket_hash = sk->sk_hash;
+ f->time_next_packet = 0ULL;
}
return f;
}