projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5811767
)
net_sched: red: Avoid devision by zero
author
Nogah Frankel
<nogahf@mellanox.com>
Mon, 4 Dec 2017 11:31:10 +0000
(13:31 +0200)
committer
David S. Miller
<davem@davemloft.net>
Tue, 5 Dec 2017 19:37:12 +0000
(14:37 -0500)
Do not allow delta value to be zero since it is used as a divisor.
Fixes:
8af2a218de38
("sch_red: Adaptative RED AQM")
Signed-off-by: Nogah Frankel <nogahf@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/red.h
patch
|
blob
|
history
diff --git
a/include/net/red.h
b/include/net/red.h
index
9a93477
..
5918f78
100644
(file)
--- a/
include/net/red.h
+++ b/
include/net/red.h
@@
-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) {