diff options
author | Arik Nemtsov <arik@wizery.com> | 2014-12-17 18:00:44 +0200 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2014-12-18 14:56:35 +0100 |
commit | 79f241b41b5f581c6be66785ab8b9c8e3b1651c7 (patch) | |
tree | 1a9529b379d322e1d18882bb6280bd1c67d4a623 | |
parent | 93a1e86ce10e4898f9ca9cd09d659a8a7780ee5e (diff) | |
download | linux-79f241b41b5f581c6be66785ab8b9c8e3b1651c7.tar.bz2 |
nl80211: increase the max number of rules in regdomain
Some network cards (Intel) produce per-channel regdomains and rely on
cfg80211 to merge rules as needed. This hits the max rules limit and
fails.
Signed-off-by: Arik Nemtsov <arikx.nemtsov@intel.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
-rw-r--r-- | include/uapi/linux/nl80211.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/uapi/linux/nl80211.h b/include/uapi/linux/nl80211.h index c0383e983544..18cb0aa06351 100644 --- a/include/uapi/linux/nl80211.h +++ b/include/uapi/linux/nl80211.h @@ -2112,7 +2112,7 @@ enum nl80211_attrs { #define NL80211_MAX_SUPP_RATES 32 #define NL80211_MAX_SUPP_HT_RATES 77 -#define NL80211_MAX_SUPP_REG_RULES 32 +#define NL80211_MAX_SUPP_REG_RULES 64 #define NL80211_TKIP_DATA_OFFSET_ENCR_KEY 0 #define NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY 16 #define NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY 24 |