Re: [PATCH v2 3/4] mac80211: add rate control support for encap offload
From: Arend van Spriel <arend.vanspriel@broadcom.com>
Date: 2021-05-28 10:46:45
Also in:
linux-mediatek
From: Arend van Spriel <arend.vanspriel@broadcom.com>
Date: 2021-05-28 10:46:45
Also in:
linux-mediatek
On 5/28/2021 8:05 AM, Ryder Lee wrote:
The software rate control cannot deal with encap offload, so fix it. Signed-off-by: Ryder Lee <ryder.lee@mediatek.com> --- change since v2 - none --- net/mac80211/ieee80211_i.h | 9 +++++++++ net/mac80211/rate.c | 9 ++------- net/mac80211/tx.c | 18 ++++++++++++++---- 3 files changed, 25 insertions(+), 11 deletions(-)
[...]
diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c index d3016c3a3069..0a4bc9e08637 100644 --- a/net/mac80211/tx.c +++ b/net/mac80211/tx.c
[...]
@@ -729,7 +730,8 @@ ieee80211_tx_h_rate_ctrl(struct ieee80211_tx_data *tx) "%s: Dropped data frame as no usable bitrate found while " "scanning and associated. Target station: " "%pM on %d GHz band\n", - tx->sdata->name, hdr->addr1, + tx->sdata->name, + encap ? ((struct ethhdr *)hdr)->h_dest : hdr->addr1, info->band ? 5 : 2))
Not related to this change, but I guess the band can also be 6 these days. Regards, Arend