Browse Source

qcacld-3.0: Rate limit error log in nan and ndp request handler

Rate limit error log in nan and ndp request handler to avoid
excessive console logging.

Change-Id: I9e9bb7185a77533b03e8a17d64c17371770b9b52
CRs-Fixed: 2326275
Rajeev Kumar 6 years ago
parent
commit
3872a5bcc5
2 changed files with 2 additions and 2 deletions
  1. 1 1
      core/hdd/src/wlan_hdd_nan.c
  2. 1 1
      core/hdd/src/wlan_hdd_nan_datapath.c

+ 1 - 1
core/hdd/src/wlan_hdd_nan.c

@@ -65,7 +65,7 @@ static int __wlan_hdd_cfg80211_nan_request(struct wiphy *wiphy,
 		return ret_val;
 
 	if (QDF_GLOBAL_FTM_MODE == hdd_get_conparam()) {
-		hdd_err("Command not allowed in FTM mode");
+		hdd_err_rl("Command not allowed in FTM mode");
 		return -EPERM;
 	}
 

+ 1 - 1
core/hdd/src/wlan_hdd_nan_datapath.c

@@ -335,7 +335,7 @@ static int __wlan_hdd_cfg80211_process_ndp_cmd(struct wiphy *wiphy,
 		return ret_val;
 
 	if (QDF_GLOBAL_FTM_MODE == hdd_get_conparam()) {
-		hdd_err("Command not allowed in FTM mode");
+		hdd_err_rl("Command not allowed in FTM mode");
 		return -EPERM;
 	}