diff mbox series

[1/1] wifi: cfg80211: Allow multiple userpsace applications to receive the same registered management frame.

Message ID 20230620085751.31329-1-quentin.feraboli@softathome.com
State New
Headers show
Series [1/1] wifi: cfg80211: Allow multiple userpsace applications to receive the same registered management frame. | expand

Commit Message

quentin.feraboli June 20, 2023, 8:57 a.m. UTC
Currently, only one application can listen to a management frame type.

Signed-off-by: quentin.feraboli <quentin.feraboli@softathome.com>
---
 net/wireless/mlme.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--
2.17.1

-- This message and any attachments herein are confidential, intended solely for the addressees and are SoftAtHome’s ownership. Any unauthorized use or dissemination is prohibited. If you are not the intended addressee of this message, please cancel it immediately and inform the sender.
diff mbox series

Patch

diff --git a/net/wireless/mlme.c b/net/wireless/mlme.c
index ac059cefbeb3..0f2e83fa63cb 100644
--- a/net/wireless/mlme.c
+++ b/net/wireless/mlme.c
@@ -572,7 +572,7 @@  int cfg80211_mlme_register_mgmt(struct wireless_dev *wdev, u32 snd_portid,
        list_for_each_entry(reg, &wdev->mgmt_registrations, list) {
                int mlen = min(match_len, reg->match_len);

-               if (frame_type != le16_to_cpu(reg->frame_type))
+               if (frame_type != le16_to_cpu(reg->frame_type) || snd_portid != nreg->nlportid)
                        continue;

                if (memcmp(reg->match, match_data, mlen) == 0) {