From: Felix Fietkau Date: Wed, 20 Nov 2013 17:33:46 +0000 (+0000) Subject: mac80211: fix an overflow issue in minstrel_ht X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=1a0ae39a7e69821a85c302e9b045c540593fc652;p=librecmc%2Flibrecmc.git mac80211: fix an overflow issue in minstrel_ht Signed-off-by: Felix Fietkau SVN-Revision: 38882 --- diff --git a/package/kernel/mac80211/patches/300-pending_work.patch b/package/kernel/mac80211/patches/300-pending_work.patch index 5ca87b7664..60a06c60ff 100644 --- a/package/kernel/mac80211/patches/300-pending_work.patch +++ b/package/kernel/mac80211/patches/300-pending_work.patch @@ -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); }