mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
wifi: rtlwifi: simplify rtl_action_proc() and rtl_tx_agg_start()
Since 'drv_priv' is an in-place member allocated at the end of 'struct ieee80211_sta', it can't be NULL and so relevant checks in 'rtl_action_proc()' and 'rtl_tx_agg_start()' may be dropped. Compile tested only. Found by Linux Verification Center (linuxtesting.org) with SVACE. Signed-off-by: Dmitry Antipov <dmantipov@yandex.ru> Acked-by: Ping-Ke Shih <pkshih@realtek.com> Signed-off-by: Kalle Valo <kvalo@kernel.org> Link: https://lore.kernel.org/r/20231113144734.197359-2-dmantipov@yandex.ru
This commit is contained in:
parent
0a78bb64a4
commit
2c4e9acbe3
1 changed files with 0 additions and 8 deletions
|
@ -1402,10 +1402,6 @@ bool rtl_action_proc(struct ieee80211_hw *hw, struct sk_buff *skb, u8 is_tx)
|
|||
|
||||
sta_entry =
|
||||
(struct rtl_sta_info *)sta->drv_priv;
|
||||
if (!sta_entry) {
|
||||
rcu_read_unlock();
|
||||
return true;
|
||||
}
|
||||
capab =
|
||||
le16_to_cpu(mgmt->u.action.u.addba_req.capab);
|
||||
tid = (capab &
|
||||
|
@ -1760,8 +1756,6 @@ int rtl_tx_agg_start(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
|
|||
return -EINVAL;
|
||||
|
||||
sta_entry = (struct rtl_sta_info *)sta->drv_priv;
|
||||
if (!sta_entry)
|
||||
return -ENXIO;
|
||||
tid_data = &sta_entry->tids[tid];
|
||||
|
||||
rtl_dbg(rtlpriv, COMP_SEND, DBG_DMESG,
|
||||
|
@ -1818,8 +1812,6 @@ int rtl_rx_agg_start(struct ieee80211_hw *hw,
|
|||
}
|
||||
|
||||
sta_entry = (struct rtl_sta_info *)sta->drv_priv;
|
||||
if (!sta_entry)
|
||||
return -ENXIO;
|
||||
tid_data = &sta_entry->tids[tid];
|
||||
|
||||
rtl_dbg(rtlpriv, COMP_RECV, DBG_DMESG,
|
||||
|
|
Loading…
Add table
Reference in a new issue