staging: wfx: align semantic of probe request filter with other filters
authorJérôme Pouiller <jerome.pouiller@silabs.com>
Wed, 15 Apr 2020 16:11:40 +0000 (18:11 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 16 Apr 2020 10:29:44 +0000 (12:29 +0200)
Filters provided by HIF API are sometime inclusive, sometime exclusive.

This patch align the behavior and name of the probe request filter with
the other filters.

Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
Link: https://lore.kernel.org/r/20200415161147.69738-14-Jerome.Pouiller@silabs.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wfx/hif_tx_mib.c
drivers/staging/wfx/sta.c
drivers/staging/wfx/wfx.h

index 41f3090d29be6272ecce220b18258380c0ffee20..1d26d740bd0b6c347a4bd6fb9e31d86345649545 100644 (file)
@@ -90,13 +90,13 @@ int hif_set_macaddr(struct wfx_vif *wvif, u8 *mac)
 }
 
 int hif_set_rx_filter(struct wfx_vif *wvif,
-                     bool filter_bssid, bool fwd_probe_req)
+                     bool filter_bssid, bool filter_prbreq)
 {
        struct hif_mib_rx_filter val = { };
 
        if (filter_bssid)
                val.bssid_filter = 1;
-       if (fwd_probe_req)
+       if (!filter_prbreq)
                val.fwd_probe_req = 1;
        return hif_write_mib(wvif->wdev, wvif->id, HIF_MIB_ID_RX_FILTER,
                             &val, sizeof(val));
index 963cac83b6a8fa3966bf889ab28298b369c68b2c..3a105d485237ea3f3319cfd059ccf477c89ce646 100644 (file)
@@ -136,7 +136,7 @@ void wfx_update_filtering(struct wfx_vif *wvif)
                }
        };
 
-       hif_set_rx_filter(wvif, wvif->filter_bssid, wvif->fwd_probe_req);
+       hif_set_rx_filter(wvif, wvif->filter_bssid, wvif->filter_prbreq);
        if (!wvif->filter_beacon) {
                hif_set_beacon_filter_table(wvif, 0, NULL);
                hif_beacon_filter_control(wvif, 0, 1);
@@ -242,11 +242,11 @@ void wfx_configure_filter(struct ieee80211_hw *hw,
                }
 
                if (*total_flags & FIF_PROBE_REQ)
-                       wvif->fwd_probe_req = true;
+                       wvif->filter_prbreq = false;
                else
-                       wvif->fwd_probe_req = false;
+                       wvif->filter_prbreq = true;
                hif_set_rx_filter(wvif, wvif->filter_bssid,
-                                 wvif->fwd_probe_req);
+                                 wvif->filter_prbreq);
 
                mutex_unlock(&wvif->scan_lock);
        }
index 53ed4c137b1984d3b5f46978b9882c6af608713b..3941462097a4765d9ddef50afa42283a7add37d6 100644 (file)
@@ -89,7 +89,7 @@ struct wfx_vif {
        struct work_struct      update_tim_work;
 
        bool                    filter_bssid;
-       bool                    fwd_probe_req;
+       bool                    filter_prbreq;
        bool                    filter_beacon;
 
        unsigned long           uapsd_mask;