diff options
author | Andrei Otcheretianski <andrei.otcheretianski@intel.com> | 2022-06-30 16:43:44 +0300 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2022-07-15 12:43:20 +0300 |
commit | 0d5891e347a4924a6e6fd8e2799e3d3c762983eb (patch) | |
tree | e609fb58893eec783e0e7f428b8fccc12891ba61 /net/mac80211/rx.c | |
parent | d06faef148837e39c320ed0b20a325165c6ba8d4 (diff) | |
download | linux-0d5891e347a4924a6e6fd8e2799e3d3c762983eb.tar.xz |
wifi: mac80211: Allow EAPOL tx from specific link
Allow link source address on TX.
Signed-off-by: Andrei Otcheretianski <andrei.otcheretianski@intel.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/rx.c')
-rw-r--r-- | net/mac80211/rx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/mac80211/rx.c b/net/mac80211/rx.c index 1c798c11648e..9f1ea8c840e9 100644 --- a/net/mac80211/rx.c +++ b/net/mac80211/rx.c @@ -2532,8 +2532,8 @@ __ieee80211_data_to_8023(struct ieee80211_rx_data *rx, bool *port_control) return 0; } -static bool ieee80211_is_our_addr(struct ieee80211_sub_if_data *sdata, - const u8 *addr, int *out_link_id) +bool ieee80211_is_our_addr(struct ieee80211_sub_if_data *sdata, + const u8 *addr, int *out_link_id) { unsigned int link_id; |