[PATCH] wifi: ath11k: simplify ath11k_mac_validate_vht_he_fixed_rate_settings()

Jeff Johnson quic_jjohnson at quicinc.com
Wed Jul 26 11:31:12 PDT 2023


On 7/26/2023 2:21 AM, Dmitry Antipov wrote:
> In 'ath11k_mac_validate_vht_he_fixed_rate_settings()', 'ar->ab->peers'
> list is not altered so 'list_for_each_entry()' should be safe.
> 
> Signed-off-by: Dmitry Antipov <dmantipov at yandex.ru>
> ---
>   drivers/net/wireless/ath/ath11k/mac.c | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/net/wireless/ath/ath11k/mac.c b/drivers/net/wireless/ath/ath11k/mac.c
> index 8c77ade49437..2aadf2c387b6 100644
> --- a/drivers/net/wireless/ath/ath11k/mac.c
> +++ b/drivers/net/wireless/ath/ath11k/mac.c
> @@ -8255,7 +8255,7 @@ ath11k_mac_validate_vht_he_fixed_rate_settings(struct ath11k *ar, enum nl80211_b
>   					       const struct cfg80211_bitrate_mask *mask)
>   {
>   	bool he_fixed_rate = false, vht_fixed_rate = false;
> -	struct ath11k_peer *peer, *tmp;
> +	struct ath11k_peer *peer;
>   	const u16 *vht_mcs_mask, *he_mcs_mask;
>   	struct ieee80211_link_sta *deflink;
>   	u8 vht_nss, he_nss;
> @@ -8278,7 +8278,7 @@ ath11k_mac_validate_vht_he_fixed_rate_settings(struct ath11k *ar, enum nl80211_b
>   
>   	rcu_read_lock();
>   	spin_lock_bh(&ar->ab->base_lock);
> -	list_for_each_entry_safe(peer, tmp, &ar->ab->peers, list) {
> +	list_for_each_entry(peer, &ar->ab->peers, list) {
>   		if (peer->sta) {
>   			deflink = &peer->sta->deflink;
>   

In the future please make sure driver-specific mailing lists are 
included in your patches when they exist in the MAINTAINERS file. Adding 
ath11k at lists.infradead.org



More information about the ath11k mailing list