You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
net_sched: red: Avoid devision by zero
Do not allow delta value to be zero since it is used as a divisor.
Fixes: 8af2a218de ("sch_red: Adaptative RED AQM")
Signed-off-by: Nogah Frankel <nogahf@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
5811767294
commit
5c47220342
+1
-1
@@ -179,7 +179,7 @@ static inline void red_set_parms(struct red_parms *p,
|
||||
p->qth_max = qth_max << Wlog;
|
||||
p->Wlog = Wlog;
|
||||
p->Plog = Plog;
|
||||
if (delta < 0)
|
||||
if (delta <= 0)
|
||||
delta = 1;
|
||||
p->qth_delta = delta;
|
||||
if (!max_P) {
|
||||
|
||||
Reference in New Issue
Block a user