diff options
author | Luciano Coelho <luciano.coelho@intel.com> | 2014-02-10 15:23:03 +0200 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2014-02-11 13:10:02 +0100 |
commit | 361c3e0485c737b9c8a2d456b8c3c7b08d8ca8ee (patch) | |
tree | 0db4ba87b0ae50ec2b782b99cfc3b1490d34d47c /drivers/net/wireless/mac80211_hwsim.h | |
parent | e4dcbb375cd829e1649b12e0ab7d7e5b7efcb5a5 (diff) | |
download | linux-stable-361c3e0485c737b9c8a2d456b8c3c7b08d8ca8ee.tar.gz linux-stable-361c3e0485c737b9c8a2d456b8c3c7b08d8ca8ee.tar.bz2 linux-stable-361c3e0485c737b9c8a2d456b8c3c7b08d8ca8ee.zip |
mac80211_hwsim: allow creation of single-channel radios with chanctx
Add a new HWSIM_ATTR_USE_CHANCTX attribute to the
HWSIM_CMD_CREATE_RADIO command to allow the creation of radios with
one channel that use channel contexts. If this attribute is not
present, the behaviour is the same as before (ie. single channel
radios don't use channel contexts and multi channel radios do).
Signed-off-by: Luciano Coelho <luciano.coelho@intel.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'drivers/net/wireless/mac80211_hwsim.h')
-rw-r--r-- | drivers/net/wireless/mac80211_hwsim.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/wireless/mac80211_hwsim.h b/drivers/net/wireless/mac80211_hwsim.h index 6e72996ec8c1..c9d0315575ba 100644 --- a/drivers/net/wireless/mac80211_hwsim.h +++ b/drivers/net/wireless/mac80211_hwsim.h @@ -108,6 +108,9 @@ enum { * @HWSIM_ATTR_REG_CUSTOM_REG: custom regulatory domain index (u32 attribute) * @HWSIM_ATTR_REG_STRICT_REG: request REGULATORY_STRICT_REG (flag attribute) * @HWSIM_ATTR_SUPPORT_P2P_DEVICE: support P2P Device virtual interface (flag) + * @HWSIM_ATTR_USE_CHANCTX: used with the %HWSIM_CMD_CREATE_RADIO + * command to force use of channel contexts even when only a + * single channel is supported * @__HWSIM_ATTR_MAX: enum limit */ @@ -128,6 +131,7 @@ enum { HWSIM_ATTR_REG_CUSTOM_REG, HWSIM_ATTR_REG_STRICT_REG, HWSIM_ATTR_SUPPORT_P2P_DEVICE, + HWSIM_ATTR_USE_CHANCTX, __HWSIM_ATTR_MAX, }; #define HWSIM_ATTR_MAX (__HWSIM_ATTR_MAX - 1) |