]> git.karo-electronics.de Git - karo-tx-linux.git/commit
[PATCH] ieee80211_if_set_type: make check for master dev more explicit
authorJohn W. Linville <linville@tuxdriver.com>
Thu, 4 Oct 2007 18:04:40 +0000 (14:04 -0400)
committerDavid S. Miller <davem@sunset.davemloft.net>
Wed, 10 Oct 2007 23:55:23 +0000 (16:55 -0700)
commit0654ff055c6ce5642eed88ba22915b0e56666794
tree9bf9d66c540dd3c52a8b58d96f229cde153f9529
parent04799fae8ecb42b2c687fa85fe32ff79ea0e9dc9
[PATCH] ieee80211_if_set_type: make check for master dev more explicit

Problem description by Daniel Drake <dsd@gentoo.org>:

"This sequence of events causes loss of connectivity:

<plug in>
<associate as normal in managed mode>
ifconfig eth7 down
iwconfig eth7 mode monitor
ifconfig eth7 up
ifconfig eth7 down
iwconfig eth7 mode managed
<associate as normal>

At this point you are associated but TX does not work. This is because
the eth7 hard_start_xmit is still ieee80211_monitor_start_xmit."

The problem is caused by ieee80211_if_set_type checking for a non-zero
hard_start_xmit pointer value in order to avoid changing that value for
master devices.  The fix is to make that check more explicitly linked to
master devices rather than simply checking if the value has been
previously set.

CC: Daniel Drake <dsd@gentoo.org>
Acked-by: Michael Wu <flamingice@sourmilk.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
net/mac80211/ieee80211_iface.c