Commit c5ac0854 authored by Johannes Berg's avatar Johannes Berg

mac80211_hwsim: register netlink even with multi-channel

Reject wmediumd registrations when any devices have multi-channel
capability, but register the generic netlink family unconditionally
to make it possible to add new commands that shouldn't depend on
the number of (default) channels.
Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent 85ca8fc7
...@@ -2243,6 +2243,22 @@ static int hwsim_cloned_frame_received_nl(struct sk_buff *skb_2, ...@@ -2243,6 +2243,22 @@ static int hwsim_cloned_frame_received_nl(struct sk_buff *skb_2,
static int hwsim_register_received_nl(struct sk_buff *skb_2, static int hwsim_register_received_nl(struct sk_buff *skb_2,
struct genl_info *info) struct genl_info *info)
{ {
struct mac80211_hwsim_data *data;
int chans = 1;
spin_lock_bh(&hwsim_radio_lock);
list_for_each_entry(data, &hwsim_radios, list)
chans = max(chans, data->channels);
spin_unlock_bh(&hwsim_radio_lock);
/* In the future we should revise the userspace API and allow it
* to set a flag that it does support multi-channel, then we can
* let this pass conditionally on the flag.
* For current userspace, prohibit it since it won't work right.
*/
if (chans > 1)
return -EOPNOTSUPP;
if (wmediumd_portid) if (wmediumd_portid)
return -EBUSY; return -EBUSY;
...@@ -2300,10 +2316,6 @@ static int hwsim_init_netlink(void) ...@@ -2300,10 +2316,6 @@ static int hwsim_init_netlink(void)
{ {
int rc; int rc;
/* userspace test API hasn't been adjusted for multi-channel */
if (channels > 1)
return 0;
printk(KERN_INFO "mac80211_hwsim: initializing netlink\n"); printk(KERN_INFO "mac80211_hwsim: initializing netlink\n");
rc = genl_register_family_with_ops(&hwsim_genl_family, hwsim_ops); rc = genl_register_family_with_ops(&hwsim_genl_family, hwsim_ops);
...@@ -2323,10 +2335,6 @@ static int hwsim_init_netlink(void) ...@@ -2323,10 +2335,6 @@ static int hwsim_init_netlink(void)
static void hwsim_exit_netlink(void) static void hwsim_exit_netlink(void)
{ {
/* userspace test API hasn't been adjusted for multi-channel */
if (channels > 1)
return;
/* unregister the notifier */ /* unregister the notifier */
netlink_unregister_notifier(&hwsim_netlink_notifier); netlink_unregister_notifier(&hwsim_netlink_notifier);
/* unregister the family */ /* unregister the family */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment