Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 314791
b: refs/heads/master
c: 84b60c1
h: refs/heads/master
i:
  314789: b202634
  314787: b389abc
  314783: 90a0458
v: v3
  • Loading branch information
Grazvydas Ignotas authored and John W. Linville committed Jun 20, 2012
1 parent 3e6cf3f commit 38b149e
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a2d2bb8675fe9dc127d802b6be6517a0932e65b7
refs/heads/master: 84b60c144cd32db5ca5185405e9b3f84cac9df9a
27 changes: 23 additions & 4 deletions trunk/drivers/net/wireless/ti/wl1251/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -659,13 +659,15 @@ static int wl1251_op_config(struct ieee80211_hw *hw, u32 changed)
FIF_FCSFAIL | \
FIF_BCN_PRBRESP_PROMISC | \
FIF_CONTROL | \
FIF_OTHER_BSS)
FIF_OTHER_BSS | \
FIF_PROBE_REQ)

static void wl1251_op_configure_filter(struct ieee80211_hw *hw,
unsigned int changed,
unsigned int *total,u64 multicast)
{
struct wl1251 *wl = hw->priv;
int ret;

wl1251_debug(DEBUG_MAC80211, "mac80211 configure filter");

Expand All @@ -676,7 +678,7 @@ static void wl1251_op_configure_filter(struct ieee80211_hw *hw,
/* no filters which we support changed */
return;

/* FIXME: wl->rx_config and wl->rx_filter are not protected */
mutex_lock(&wl->mutex);

wl->rx_config = WL1251_DEFAULT_RX_CONFIG;
wl->rx_filter = WL1251_DEFAULT_RX_FILTER;
Expand All @@ -699,8 +701,25 @@ static void wl1251_op_configure_filter(struct ieee80211_hw *hw,
}
if (*total & FIF_CONTROL)
wl->rx_filter |= CFG_RX_CTL_EN;
if (*total & FIF_OTHER_BSS)
wl->rx_filter &= ~CFG_BSSID_FILTER_EN;
if (*total & FIF_OTHER_BSS || is_zero_ether_addr(wl->bssid))
wl->rx_config &= ~CFG_BSSID_FILTER_EN;
if (*total & FIF_PROBE_REQ)
wl->rx_filter |= CFG_RX_PREQ_EN;

if (wl->state == WL1251_STATE_OFF)
goto out;

ret = wl1251_ps_elp_wakeup(wl);
if (ret < 0)
goto out;

/* send filters to firmware */
wl1251_acx_rx_config(wl, wl->rx_config, wl->rx_filter);

wl1251_ps_elp_sleep(wl);

out:
mutex_unlock(&wl->mutex);
}

/* HW encryption */
Expand Down

0 comments on commit 38b149e

Please sign in to comment.