diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2009-07-02 11:20:43 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-07-10 15:01:53 -0400 |
commit | 19957bb399e2722719c0e20c9ae91cf8b6aaff04 (patch) | |
tree | 9c4d53fe5938ceee41333a1afd5be0ed5c1ce313 /net/wireless/wext-sme.c | |
parent | 517357c685ccc4b5783cc7dbdae8824ada19a97f (diff) |
cfg80211: keep track of BSSes
In order to avoid problems with BSS structs going away
while they're in use, I've long wanted to make cfg80211
keep track of them. Without the SME, that wasn't doable
but now that we have the SME we can do this too. It can
keep track of up to four separate authentications and
one association, regardless of whether it's controlled
by the cfg80211 SME or the userspace SME.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/wireless/wext-sme.c')
-rw-r--r-- | net/wireless/wext-sme.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/wireless/wext-sme.c b/net/wireless/wext-sme.c index 3b531d572b69..fe1987acb891 100644 --- a/net/wireless/wext-sme.c +++ b/net/wireless/wext-sme.c | |||
@@ -93,7 +93,7 @@ int cfg80211_mgd_wext_giwfreq(struct net_device *dev, | |||
93 | return -EINVAL; | 93 | return -EINVAL; |
94 | 94 | ||
95 | if (wdev->current_bss) | 95 | if (wdev->current_bss) |
96 | chan = wdev->current_bss->channel; | 96 | chan = wdev->current_bss->pub.channel; |
97 | else if (wdev->wext.connect.channel) | 97 | else if (wdev->wext.connect.channel) |
98 | chan = wdev->wext.connect.channel; | 98 | chan = wdev->wext.connect.channel; |
99 | 99 | ||
@@ -244,7 +244,7 @@ int cfg80211_mgd_wext_giwap(struct net_device *dev, | |||
244 | ap_addr->sa_family = ARPHRD_ETHER; | 244 | ap_addr->sa_family = ARPHRD_ETHER; |
245 | 245 | ||
246 | if (wdev->current_bss) | 246 | if (wdev->current_bss) |
247 | memcpy(ap_addr->sa_data, wdev->current_bss->bssid, ETH_ALEN); | 247 | memcpy(ap_addr->sa_data, wdev->current_bss->pub.bssid, ETH_ALEN); |
248 | else if (wdev->wext.connect.bssid) | 248 | else if (wdev->wext.connect.bssid) |
249 | memcpy(ap_addr->sa_data, wdev->wext.connect.bssid, ETH_ALEN); | 249 | memcpy(ap_addr->sa_data, wdev->wext.connect.bssid, ETH_ALEN); |
250 | else | 250 | else |