Find a STA entry based on MLO affiliated link addresses for the case
where an unprotected Data frame is being processed. This extends the
changes in commit
228420e2d9a8 ("wlantest: Find a STA entry based on MLO
affiliated link addresses") to cover the unencrypted case. This is
needed in particular for the Null frames used for managing the power
save state to avoid generating duplicate STA entries that can mess up
key information for the following frames.
Signed-off-by: Jouni Malinen <quic_jouni@quicinc.com>
bss = bss_get(wt, bssid);
if (bss) {
- struct wlantest_sta *sta = sta_get(bss, sta_addr);
+ struct wlantest_sta *sta;
+
+ sta = sta_find_mlo(wt, bss, sta_addr);
+ if (!sta)
+ sta = sta_get(bss, sta_addr);
if (sta) {
if (qos) {