mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2025-06-23 08:34:20 +00:00
rtl8188eu: Remove DBG_EXPIRATION_CHK
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
c0ef452bab
commit
fa0ee4759b
2 changed files with 0 additions and 54 deletions
|
@ -309,25 +309,10 @@ void rtw_remove_bcn_ie(struct adapter *padapter, WLAN_BSSID_EX *pnetwork, u8 ind
|
|||
pnetwork->IELength = offset + remainder_ielen;
|
||||
}
|
||||
|
||||
|
||||
u8 chk_sta_is_alive(struct sta_info *psta);
|
||||
u8 chk_sta_is_alive(struct sta_info *psta)
|
||||
{
|
||||
u8 ret = false;
|
||||
#ifdef DBG_EXPIRATION_CHK
|
||||
DBG_871X("sta:"MAC_FMT", rssi:%d, rx:"STA_PKTS_FMT", expire_to:%u, %s%ssq_len:%u\n"
|
||||
, MAC_ARG(psta->hwaddr)
|
||||
, psta->rssi_stat.UndecoratedSmoothedPWDB
|
||||
/* STA_RX_PKTS_ARG(psta) */
|
||||
, STA_RX_PKTS_DIFF_ARG(psta)
|
||||
, psta->expire_to
|
||||
, psta->state&WIFI_SLEEP_STATE?"PS, ":""
|
||||
, psta->state&WIFI_STA_ALIVE_CHK_STATE?"SAC, ":""
|
||||
, psta->sleepq_len
|
||||
);
|
||||
#endif
|
||||
|
||||
/* if(sta_last_rx_pkts(psta) == sta_rx_pkts(psta)) */
|
||||
if((psta->sta_stats.last_rx_data_pkts + psta->sta_stats.last_rx_ctrl_pkts) == (psta->sta_stats.rx_data_pkts + psta->sta_stats.rx_ctrl_pkts))
|
||||
{
|
||||
}
|
||||
|
@ -358,12 +343,6 @@ void expire_timeout_chk(struct adapter *padapter)
|
|||
plist = get_next(phead);
|
||||
|
||||
/* check auth_queue */
|
||||
#ifdef DBG_EXPIRATION_CHK
|
||||
if (rtw_end_of_queue_search(phead, plist) == false) {
|
||||
DBG_871X(FUNC_NDEV_FMT" auth_list, cnt:%u\n"
|
||||
, FUNC_NDEV_ARG(padapter->pnetdev), pstapriv->auth_list_cnt);
|
||||
}
|
||||
#endif
|
||||
while ((rtw_end_of_queue_search(phead, plist)) == false)
|
||||
{
|
||||
psta = LIST_CONTAINOR(plist, struct sta_info, auth_list);
|
||||
|
@ -403,12 +382,6 @@ void expire_timeout_chk(struct adapter *padapter)
|
|||
plist = get_next(phead);
|
||||
|
||||
/* check asoc_queue */
|
||||
#ifdef DBG_EXPIRATION_CHK
|
||||
if (rtw_end_of_queue_search(phead, plist) == false) {
|
||||
DBG_871X(FUNC_NDEV_FMT" asoc_list, cnt:%u\n"
|
||||
, FUNC_NDEV_ARG(padapter->pnetdev), pstapriv->asoc_list_cnt);
|
||||
}
|
||||
#endif
|
||||
while ((rtw_end_of_queue_search(phead, plist)) == false)
|
||||
{
|
||||
psta = LIST_CONTAINOR(plist, struct sta_info, asoc_list);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue