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

From: quentin.feraboli
Date: Tue Jun 20 2023 - 04:58:14 EST


Currently, only one application can listen to a management frame type.

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

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) {
--
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.