Skip to content

Commit

Permalink
A less aggressive autorate margin.
Browse files Browse the repository at this point in the history
  • Loading branch information
chromi committed Jun 12, 2016
1 parent b4759e9 commit ff38695
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sch_cake.c
Expand Up @@ -759,7 +759,7 @@ static s32 cake_enqueue(struct sk_buff *skb, struct Qdisc *sch)
if (q->rate_flags & CAKE_FLAG_AUTORATE_INGRESS &&
now - q->last_reconfig_time >
(NSEC_PER_SEC / 4)) {
q->rate_bps = (q->avg_peak_bandwidth * 15) >> 4;
q->rate_bps = (q->avg_peak_bandwidth * 7) >> 3;
cake_reconfigure(sch);
}
}
Expand Down

0 comments on commit ff38695

Please sign in to comment.