24 Mar, 2006
1 commit
-
After a scan, we weren't switching back to the original channel if we
were associated with an AP. So NetworkManager's periodic scans would
disrupt connectivity until the ESSID was manually set again. Fix that.Signed-off-by: David Woodhouse
Signed-off-by: John W. Linville
23 Mar, 2006
24 commits
-
Remove the function_enter() debugging macros.
Signed-off-by: John W. Linville
-
Softmac scanning fails because the stop flag is not cleared before
scanning is started. The attached one-line patch fixes this.Signed-Off-By: Larry Finger
Signed-off-by: John W. Linville -
This patch removes ieee80211softmac_reassoc which is neither implemented
nor used nor necessary.Signed-off-by: Johannes Berg
Signed-off-by: John W. Linville -
This patch adds handling of reassociation to softmac when the AP
requests it. Patch from Larry Finger.Signed-off-by: Johannes Berg
Signed-off-by: John W. Linville -
Recently the deauth packet handler was updated to use a deauth packet
struct (identical to the auth packet struct) and this now gives a
warning. This patch updates the code to properly use a deauth struct and
deauth variable.Signed-off-by: Johannes Berg
Signed-off-by: John W. Linville -
This patch removes a blank line that shouldn't be there and fixes a
spelling error in softmac.Signed-off-by: Johannes Berg
Signed-off-by: John W. Linville -
This patch updates the copyright statements in softmac that I
erroneously added for 2005 only (when we already had 2006).Signed-off-by: Johannes Berg
Signed-off-by: John W. Linville -
Version 2 of the patch. Added checks for version 0
and proper from/to DS bits. Even in promisc
mode we won't receive packets from another BSSes.bcm43xx_rx() contains code to filter out packets from
foreign BSSes and decide whether to call ieee80211_rx
or ieee80211_rx_mgt. This is not bcm specific.Patch adapts that code and adds it to 80211
as ieee80211_rx_any() function.Signed-off-by: Denis Vlasenko
Signed-off-by: John W. Linville -
Signed-off-by: John W. Linville
-
Signed-off-by: John W. Linville
-
add copyright and license headers to all softmac files
Signed-off-by: John W. Linville
-
Signed-off-by: John W. Linville
-
Properly check return value of ieee80211softmac_alloc_mgt
in ieee80211softmac_disassoc_deauth (patch by Denis Vlasenko)Signed-off-by: John W. Linville
-
Signed-off-by: John W. Linville
-
Signed-off-by: John W. Linville
-
Signed-off-by: John W. Linville
-
Signed-off-by: John W. Linville
-
Signed-off-by: John W. Linville
-
TODO: add callbacks for ifup/ifdown (see mailing list)
Signed-off-by: John W. Linville
-
Convert softmac to use global workqueue instead of private one...
Signed-off-by: John W. Linville
-
Signed-off-by: John W. Linville
-
Signed-off-by: John W. Linville
-
Signed-off-by: John W. Linville
-
Signed-off-by: John W. Linville
18 Mar, 2006
1 commit
-
This patch fixes a problem in the ieee80211 probe response and beacon
reception code that would use the packet statistics for a network even
if they were received on a channel other than that which the network
exists on.This causes a problem in overlapping channels where, for example, a
strong AP on channel 2 could have its beacons received on channels 1 and
3, but at much lower signal levels. If scanning was done sequentially,
this means the beacon received on channel 3 would update the AP's signal
level as being much lower than it really is, which subsequently could
cause that AP to be passed over and an alternate AP selected.Signed-off-by: James Ketrenos
Signed-off-by: John W. Linville
16 Mar, 2006
3 commits
-
Fix QoS is not active even the network and the card is QOS enabled.
The problem is we pass the wrong ieee80211_network address to
ipw_handle_beacon/ipw_handle_probe_response, thus the
ieee80211_network->qos_data.active will not be set, causing the driver
not sending QoS frames at all.Signed-off-by: Hong Liu
Signed-off-by: Zhu Yi
Signed-off-by: John W. Linville -
Use the correct STYPE for Qos data.
Signed-off-by: Zhu Yi
Signed-off-by: John W. Linville
28 Feb, 2006
3 commits
-
I have come to consider BUG_ON generally harmful. The idea of an assert is
to prevent a program to execute past a point where its state is known
erroneous, thus preventing it from dealing more damage to the data
(or hiding the traces of malfunction). The problem is, in kernel this harm
has to be balanced against the harm of forced reboot.The last straw was our softmac tree, where "iwlist eth1 scan" causes
a lockup. It is absolutely frivolus and provides no advantages a normal
assert has to provide. In fact, doing this impedes debugging.Signed-off-by: Pete Zaitcev
Signed-off-by: John W. Linville -
Fix broken is_beacon().
Signed-off-by: Pete Zaitcev
Signed-off-by: John W. Linville
17 Feb, 2006
2 commits
-
This patch adds a missing "static" on a variable (sparse complaint)
Signed-off-by: John W. Linville
-
It replaces returning WPA/RSN IEs as custom events with returning them
as IWEVGENIE events. I have tested that it returns proper information
with both Xsupplicant, and the latest development version of the Linux
wireless tools.Signed-off-by: Chris Hessing
Signed-off-by: Zhu Yi
Signed-off-by: John W. Linville
31 Jan, 2006
6 commits
-
On my system, I get unhandled management functions corresponding
to IEEE80211_STYPE_REASSOC_REQ and IEEE80211_STYPE_ASSOC_REQ. The
attached patch adds the logic to pass these requests off to a user
stack. The patches to implement these requests in softmac have already
been sent to Johannes Berg.Signed-Off-By: Larry Finger
Signed-off-by: John W. Linville
-
This patch creates two functions ieee80211_wx_set_auth and
ieee80211_wx_get_auth that can be used by drivers for the wireless
extension handlers instead of writing their own, if the implementation
should be software only.These patches enable using bcm43xx devices with WPA and this seems (as
far as I can tell) to be the only difference between the stock ieee80211
and softmac's ieee80211 left.Signed-Off-By: Johannes Berg
Signed-off-by: John W. Linville
-
Patch fixes misplaced (). Diffed against wireless-2.6.git
Signed-off-by: Denis Vlasenko
Signed-off-by: John W. Linville -
This patch contains the following changes:
- add a CONFIG_WIRELESS_EXT select'ed by NET_RADIO for conditional
code
- remove the now no longer required #ifdef CONFIG_NET_RADIO from some
#include'sBased on a patch by Jean Tourrilhes .
Signed-off-by: Adrian Bunk
Signed-off-by: John W. Linville -
This patch, generated against 2.6.16-rc1-git4, corrects two typographical
errors in ieee80211_rx.c and adds the facility name to a bare printk.Signed-Off-By: Larry Finger
Signed-off-by: John W. Linville