mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
add two patches from madwifi trac ticket 914 - should fix multiple wlanconfig create/destroy runs and a few wds related crashes
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5865 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
22
package/madwifi/patches/110-init_fix_PR_914.patch
Normal file
22
package/madwifi/patches/110-init_fix_PR_914.patch
Normal file
@@ -0,0 +1,22 @@
|
||||
Doing ifconfig athX down/ifconfig athX up several times provokes kernel crash.
|
||||
See http://madwifi.org/ticket/914. But if ath_hal_phydisable() is skipped -
|
||||
I observe NO CRASH whatsoever ... :\ Weird.
|
||||
|
||||
Signed-off-by: Mindaugas Kriaučiūnas <mindaugas.kriauciunas@gmail.com>
|
||||
Signed-off-by: Žilvinas Valinskas <valins@soften.ktu.lt>
|
||||
|
||||
Index: madwifi-ng-trunk/ath/if_ath.c
|
||||
===================================================================
|
||||
--- madwifi-ng-trunk.orig/ath/if_ath.c 2006-10-16 17:40:50.000000000 +0300
|
||||
+++ madwifi-ng-trunk/ath/if_ath.c 2006-10-18 16:17:32.000000000 +0300
|
||||
@@ -1997,7 +1997,10 @@
|
||||
ath_draintxq(sc);
|
||||
if (!sc->sc_invalid) {
|
||||
ath_stoprecv(sc);
|
||||
+
|
||||
+ /* XXX: this helps to avoid crashes on ifconfig down/up
|
||||
ath_hal_phydisable(ah);
|
||||
+ */
|
||||
} else
|
||||
sc->sc_rxlink = NULL;
|
||||
ath_beacon_free(sc); /* XXX needed? */
|
||||
Reference in New Issue
Block a user