mac80211: fix an overflow issue in minstrel_ht
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 38882
This commit is contained in:
parent
d823c20f05
commit
1a0ae39a7e
1 changed files with 1 additions and 1 deletions
|
@ -4758,7 +4758,7 @@
|
|||
|
||||
nsecs += minstrel_mcs_groups[group].duration[rate];
|
||||
- tp = 1000000 * ((mr->probability * 1000) / nsecs);
|
||||
+ tp = 1000000 * (prob * 1000) / nsecs;
|
||||
+ tp = 1000000 * ((prob * 1000) / nsecs);
|
||||
|
||||
mr->cur_tp = MINSTREL_TRUNC(tp);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue