mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-18 18:29:29 +01:00
netdev: skip associate event when not in OWE/FT
The associate event is only important for OWE and FT. If neither of these conditions (or FT initial association) are happening we do not need to continue further processing the associate event.
This commit is contained in:
parent
c416db0708
commit
a71adcc243
@ -2389,6 +2389,9 @@ static void netdev_associate_event(struct l_genl_msg *msg,
|
||||
if (netdev->aborting)
|
||||
return;
|
||||
|
||||
if (!netdev->owe && !netdev->in_ft && !netdev->handshake->mde)
|
||||
return;
|
||||
|
||||
if (!l_genl_attr_init(&attr, msg)) {
|
||||
l_debug("attr init failed");
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user