Skip to content

Commit

Permalink
mac80211: configure BSS_CHANGED_ARP_FILTER on reconfiguration
Browse files Browse the repository at this point in the history
Configure arp filtering on sta reconfiguration.

Signed-off-by: Eliad Peller <eliad@wizery.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
Eliad Peller authored and John W. Linville committed Dec 13, 2011
1 parent cd6c524 commit 0d392e9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion net/mac80211/util.c
Original file line number Diff line number Diff line change
Expand Up @@ -1234,7 +1234,8 @@ int ieee80211_reconfig(struct ieee80211_local *local)

switch (sdata->vif.type) {
case NL80211_IFTYPE_STATION:
changed |= BSS_CHANGED_ASSOC;
changed |= BSS_CHANGED_ASSOC |
BSS_CHANGED_ARP_FILTER;
mutex_lock(&sdata->u.mgd.mtx);
ieee80211_bss_info_change_notify(sdata, changed);
mutex_unlock(&sdata->u.mgd.mtx);
Expand Down

0 comments on commit 0d392e9

Please sign in to comment.