linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Mikhail Gavrilov <mikhail.v.gavrilov@gmail.com>
To: Felix Fietkau <nbd@nbd.name>
Cc: linux-wireless@vger.kernel.org, kvalo@kernel.org,
	Jonas Jelonek <jelonek.jonas@gmail.com>
Subject: Re: [PATCH 6.0] wifi: mt76: fix rate reporting / throughput regression on mt7915 and newer
Date: Tue, 27 Sep 2022 17:00:53 +0500	[thread overview]
Message-ID: <CABXGCsOfE1eRsS2jtVo63QbMxyf-jGX_QPhpgsh55varpzjVnQ@mail.gmail.com> (raw)
In-Reply-To: <20220927093823.6007-1-nbd@nbd.name>

On Tue, Sep 27, 2022 at 2:38 PM Felix Fietkau <nbd@nbd.name> wrote:
>
> mt7915 and newer need to report the rate_info that's stored in wcid->rate,
> since they don't fill info->status.rates.
>
> Cc: Jonas Jelonek <jelonek.jonas@gmail.com>
> Reported-by: Mikhail Gavrilov <mikhail.v.gavrilov@gmail.com>
> Link: https://lore.kernel.org/all/CABXGCsP0znm9pS-MiKtyxTXR7XiyFVqen0qzNpicGHDZKCzbwg@mail.gmail.com/
> Fixes: 44fa75f207d8 ("mac80211: extend current rate control tx status API")
> Signed-off-by: Felix Fietkau <nbd@nbd.name>
> ---
>  drivers/net/wireless/mediatek/mt76/tx.c | 10 ++++++++--
>  1 file changed, 8 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/net/wireless/mediatek/mt76/tx.c b/drivers/net/wireless/mediatek/mt76/tx.c
> index e67cc7909bce..6c054850363f 100644
> --- a/drivers/net/wireless/mediatek/mt76/tx.c
> +++ b/drivers/net/wireless/mediatek/mt76/tx.c
> @@ -60,14 +60,20 @@ mt76_tx_status_unlock(struct mt76_dev *dev, struct sk_buff_head *list)
>                         .skb = skb,
>                         .info = IEEE80211_SKB_CB(skb),
>                 };
> +               struct ieee80211_rate_status rs = {};
>                 struct mt76_tx_cb *cb = mt76_tx_skb_cb(skb);
>                 struct mt76_wcid *wcid;
>
>                 wcid = rcu_dereference(dev->wcid[cb->wcid]);
>                 if (wcid) {
>                         status.sta = wcid_to_sta(wcid);
> -                       status.rates = NULL;
> -                       status.n_rates = 0;
> +                       if (status.sta && (wcid->rate.flags || wcid->rate.legacy)) {
> +                               rs.rate_idx = wcid->rate;
> +                               status.rates = &rs;
> +                               status.n_rates = 1;
> +                       } else {
> +                               status.n_rates = 0;
> +                       }
>                 }
>
>                 hw = mt76_tx_status_get_hw(dev, skb);
> --
> 2.36.1
>


Thanks, the issue is solved.
Tested-by: Mikhail Gavrilov <mikhail.v.gavrilov@gmail.com>

-- 
Best Regards,
Mike Gavrilov.

  reply	other threads:[~2022-09-27 12:01 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-27  9:38 [PATCH 6.0] wifi: mt76: fix rate reporting / throughput regression on mt7915 and newer Felix Fietkau
2022-09-27 12:00 ` Mikhail Gavrilov [this message]
2022-10-06  5:20 ` Kalle Valo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CABXGCsOfE1eRsS2jtVo63QbMxyf-jGX_QPhpgsh55varpzjVnQ@mail.gmail.com \
    --to=mikhail.v.gavrilov@gmail.com \
    --cc=jelonek.jonas@gmail.com \
    --cc=kvalo@kernel.org \
    --cc=linux-wireless@vger.kernel.org \
    --cc=nbd@nbd.name \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).