This series contains a few fixes for cfg80211 such as another fix for parsing country IEs, but mostly contains work to help drivers build a more useful reg_notifier(). While at it we remove the CONFIG_WIRELESS_OLD_REGULATORY as we are now on road to 2.6.30. This v2 of this series changes the way we deal with custom regulatory domains and require them to be passed to cfg80211 prior to wiphy registration. The trick and emphasis here is to use the channel orig_* values to ensures they are respected. Another nice advantage of this approach is after a regulatory_hint or a custom regulatory hint a user regulatory_hint() will only be applied against the driver's regulatory domain, not the previous user regulatory domain. This should allow users who suspend/resume to travel and change regulatory domains manually to help compliance without loosing channels based on previous locations. Thanks to Johannes for his pointers. Luis R. Rodriguez (13): cfg80211: print correct intersected regulatory domain cfg80211: add option for wiphys to disregard country IEs cfg80211: add wiphy_apply_custom_regulatory() cfg80211: export freq_reg_info() cfg80211: Fix sanity check on 5 GHz when processing country IE cfg80211: process user requests only after previous user/driver/core requests cfg80211: only export disable flag on channel disablement cfg80211: save original values on regulatory hints cfg80211: rename fw_handles_regulatory to custom_regulatory cfg80211: remove check for last_request on ignore_reg_update() cfg80211: move check for ignore_reg_update() on wiphy_update_regulatory() mac80211: allow mac80211 drivers to get to struct ieee80211_hw from wiphy cfg80211: Remove CONFIG_WIRELESS_OLD_REGULATORY Documentation/feature-removal-schedule.txt | 18 -- drivers/net/wireless/iwlwifi/iwl-core.c | 2 +- drivers/net/wireless/iwlwifi/iwl3945-base.c | 2 +- include/net/cfg80211.h | 4 + include/net/mac80211.h | 13 + include/net/wireless.h | 51 ++++- net/mac80211/util.c | 9 + net/wireless/Kconfig | 46 +--- net/wireless/nl80211.c | 5 - net/wireless/reg.c | 354 ++++++++++++--------------- 10 files changed, 248 insertions(+), 256 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html