Browse Source

mac80211: fix rate reporting inside cfg80211_calculate_bitrate_he()

[ Upstream commit 25d16d124a5e249e947c0487678b61dcff25cf8b ]

The reported rate is not scaled down correctly. After applying this patch,
the function will behave just like the v/ht equivalents.

Signed-off-by: Shashidhar Lakkavalli <slakkavalli@datto.com>
Signed-off-by: John Crispin <john@phrozen.org>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
John Crispin 6 years ago
parent
commit
bc84982f97
1 changed files with 1 additions and 1 deletions
  1. 1 1
      net/wireless/util.c

+ 1 - 1
net/wireless/util.c

@@ -1219,7 +1219,7 @@ static u32 cfg80211_calculate_bitrate_he(struct rate_info *rate)
 	if (rate->he_dcm)
 	if (rate->he_dcm)
 		result /= 2;
 		result /= 2;
 
 
-	return result;
+	return result / 10000;
 }
 }
 
 
 u32 cfg80211_calculate_bitrate(struct rate_info *rate)
 u32 cfg80211_calculate_bitrate(struct rate_info *rate)