mbox series

[0/2] wifi: mac80211: extend rx API with link_id for MLO connection

Message ID 20220817104213.2531-1-quic_vthiagar@quicinc.com (mailing list archive)
Headers show
Series wifi: mac80211: extend rx API with link_id for MLO connection | expand

Message

Vasanthakumar Thiagarajan Aug. 17, 2022, 10:42 a.m. UTC
From: Vasanthakumar Thiagarajan <quic_vthiagar@quicinc.com>

In MLO, the frames can be received on any of the affiliated links.
When the address translation for rx frames are done in fw/hw, it
is very important to have an explicit link information reported
for every rx frame to mac80211. Per-link processing includes
stats update, GTK/IGTK/BIGTK retrieval and so on. This patch
set only tries to use the link at the top level APIs, deep
rx handlers are yet to be changed to use the respective
link accordingly.

This series is prepared on top of the latest mld branch.

Changes from RFC:

- Re-arranged the code changes across the patches
- Add a valid flag for link_id in rs_status
- Remove logic involving unspecified link_id

Vasanthakumar Thiagarajan (2):
  wifi: mac80211: add link information in ieee80211_rx_status
  wifi: mac80211: use the corresponding link for stats update

 include/net/mac80211.h |   5 ++
 net/mac80211/rx.c      | 130 ++++++++++++++++++++++++++++++++++++++---
 2 files changed, 128 insertions(+), 7 deletions(-)

Comments

Kalle Valo Sept. 1, 2022, 10:35 a.m. UTC | #1
Vasanthakumar <quic_vthiagar@quicinc.com> writes:

> From: Vasanthakumar Thiagarajan <quic_vthiagar@quicinc.com>

Your last name is missing from SMTP From header:

From:   Vasanthakumar <quic_vthiagar@quicinc.com>

If you fix that git doesn't need to add a second From header to the mail
body.
Vasanthakumar Thiagarajan Sept. 2, 2022, 3:31 a.m. UTC | #2
On 9/1/2022 4:05 PM, Kalle Valo wrote:
> Vasanthakumar <quic_vthiagar@quicinc.com> writes:
> 
>> From: Vasanthakumar Thiagarajan <quic_vthiagar@quicinc.com>
> 
> Your last name is missing from SMTP From header:
> 
> From:   Vasanthakumar <quic_vthiagar@quicinc.com>
> 
> If you fix that git doesn't need to add a second From header to the mail
> body.
> 

Sure, ill fix this. Thanks for pointing this out.

Vasanth