From: Felix Fietkau Date: Tue, 9 Dec 2008 18:28:22 +0000 (+0000) Subject: madwifi: move autochannel idletime decision after radar and phy mode checking X-Git-Tag: reboot~25036 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=54f277793e0c5753cffae7a4fd0d66d86fec7a47 madwifi: move autochannel idletime decision after radar and phy mode checking SVN-Revision: 13564 --- diff --git a/package/madwifi/patches/389-autochannel.patch b/package/madwifi/patches/389-autochannel.patch index 7926d2e58d..0e4cad873d 100644 --- a/package/madwifi/patches/389-autochannel.patch +++ b/package/madwifi/patches/389-autochannel.patch @@ -115,11 +115,11 @@ pc_cmp_samechan(struct ieee80211com *ic, struct ieee80211_channel *a, struct ieee80211_channel *b) { -@@ -455,6 +468,7 @@ pc_cmp(const void *_a, const void *_b) - return res; \ - } while (0) +@@ -457,6 +470,7 @@ pc_cmp(const void *_a, const void *_b) -+ EVALUATE_CRITERION(idletime, a, b); EVALUATE_CRITERION(radar, a, b); EVALUATE_CRITERION(keepmode, params, a, b); ++ EVALUATE_CRITERION(idletime, a, b); EVALUATE_CRITERION(sc, ic, a, b); + /* XXX: rssi useless? pick_channel evaluates it anyway */ + EVALUATE_CRITERION(rssi, params->ss->ss_priv, a, b);