Browse Source

qcacld-3.0: Update last_scan_reject_timestamp with proper value

When the scan is rejected, driver saves the scan reject reason and the
rejected time by converting the jiffies to msec. In case when
HZ is 100 while converting jiffies to msec, jiffies_to_msecs() return
wrapped value of jiffies(in msec). This result value of the current jiffies
(return value of jiffies_to_msecs API) becomes greater than scan reject
time (pHddCtx->last_scan_reject_timestamp) and __wlan_hdd_cfg80211_scan
trigger SSR in case of scan rejection.

Fix is to Use jiffiy directly instead of using jiffies_to_msecs()
while updating scan reject time(pHddCtx->last_scan_reject_timestamp).

Change-Id: Ib86830456fdc48143bf282779216ab94aed11923
CRs-Fixed: 2289992
Abhinav Kumar 6 years ago
parent
commit
87ccf7b34b
1 changed files with 7 additions and 6 deletions
  1. 7 6
      core/hdd/src/wlan_hdd_scan.c

+ 7 - 6
core/hdd/src/wlan_hdd_scan.c

@@ -560,19 +560,20 @@ static int __wlan_hdd_cfg80211_scan(struct wiphy *wiphy,
 		    !hdd_ctx->last_scan_reject_timestamp) {
 			hdd_ctx->last_scan_reject_session_id = curr_session_id;
 			hdd_ctx->last_scan_reject_reason = curr_reason;
-			hdd_ctx->last_scan_reject_timestamp =
-				jiffies_to_msecs(jiffies) +
-				SCAN_REJECT_THRESHOLD_TIME;
+			hdd_ctx->last_scan_reject_timestamp = jiffies +
+				msecs_to_jiffies(SCAN_REJECT_THRESHOLD_TIME);
 			hdd_ctx->scan_reject_cnt = 0;
 		} else {
 			hdd_ctx->scan_reject_cnt++;
 			if ((hdd_ctx->scan_reject_cnt >=
 			   SCAN_REJECT_THRESHOLD) &&
-			   qdf_system_time_after(jiffies_to_msecs(jiffies),
+			   qdf_system_time_after(jiffies,
 			   hdd_ctx->last_scan_reject_timestamp)) {
-				hdd_err("scan reject threshold reached Session %d Reason %d count %d",
+				hdd_err("scan reject threshold reached Session %d Reason %d count %d reject timestamp %lu jiffies %lu",
 					curr_session_id, curr_reason,
-					hdd_ctx->scan_reject_cnt);
+					hdd_ctx->scan_reject_cnt,
+					hdd_ctx->last_scan_reject_timestamp,
+					jiffies);
 				hdd_ctx->last_scan_reject_timestamp = 0;
 				hdd_ctx->scan_reject_cnt = 0;
 				if (hdd_ctx->config->enable_fatal_event) {