rtlwifi: Change debug level for deletion of an entry in CAM
When running in AP mode, the driver reports all deletions from CAM in a cryptic manner that makes users think it is an error. change so that the condition is only reported at higher-levels of debugging. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
4b5237cc86
commit
5ea276963e
1 changed files with 3 additions and 2 deletions
|
@ -128,7 +128,7 @@ u8 rtl_cam_add_one_entry(struct ieee80211_hw *hw, u8 *mac_addr,
|
||||||
u32 us_config;
|
u32 us_config;
|
||||||
struct rtl_priv *rtlpriv = rtl_priv(hw);
|
struct rtl_priv *rtlpriv = rtl_priv(hw);
|
||||||
|
|
||||||
RT_TRACE(rtlpriv, COMP_SEC, DBG_DMESG,
|
RT_TRACE(rtlpriv, COMP_SEC, DBG_LOUD,
|
||||||
"EntryNo:%x, ulKeyId=%x, ulEncAlg=%x, ulUseDK=%x MacAddr %pM\n",
|
"EntryNo:%x, ulKeyId=%x, ulEncAlg=%x, ulUseDK=%x MacAddr %pM\n",
|
||||||
ul_entry_idx, ul_key_id, ul_enc_alg,
|
ul_entry_idx, ul_key_id, ul_enc_alg,
|
||||||
ul_default_key, mac_addr);
|
ul_default_key, mac_addr);
|
||||||
|
@ -342,7 +342,8 @@ void rtl_cam_del_entry(struct ieee80211_hw *hw, u8 *sta_addr)
|
||||||
/* Remove from HW Security CAM */
|
/* Remove from HW Security CAM */
|
||||||
memset(rtlpriv->sec.hwsec_cam_sta_addr[i], 0, ETH_ALEN);
|
memset(rtlpriv->sec.hwsec_cam_sta_addr[i], 0, ETH_ALEN);
|
||||||
rtlpriv->sec.hwsec_cam_bitmap &= ~(BIT(0) << i);
|
rtlpriv->sec.hwsec_cam_bitmap &= ~(BIT(0) << i);
|
||||||
pr_info("&&&&&&&&&del entry %d\n", i);
|
RT_TRACE(rtlpriv, COMP_SEC, DBG_LOUD,
|
||||||
|
"del CAM entry %d\n", i);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Add table
Reference in a new issue