aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Berg <johannes.berg@intel.com>2010-08-27 06:35:59 -0400
committerJohn W. Linville <linville@tuxdriver.com>2010-08-27 13:53:31 -0400
commitc35d02705e9c2db90a89b29142046b4ffd5a76e5 (patch)
treede91b342e1406c49d010340d574897d75f69df57
parent34d4bc4d41d282a66dafe1b01a7d46bad468cefb (diff)
mac80211_hwsim: support runtime iftype changes
Add the trivial support for runtime interface type changes to mac80211_hwsim for testing. Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r--drivers/net/wireless/mac80211_hwsim.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/drivers/net/wireless/mac80211_hwsim.c b/drivers/net/wireless/mac80211_hwsim.c
index 298ba79fc51b..92b486d46eb9 100644
--- a/drivers/net/wireless/mac80211_hwsim.c
+++ b/drivers/net/wireless/mac80211_hwsim.c
@@ -601,6 +601,18 @@ static int mac80211_hwsim_add_interface(struct ieee80211_hw *hw,
601} 601}
602 602
603 603
604static int mac80211_hwsim_change_interface(struct ieee80211_hw *hw,
605 struct ieee80211_vif *vif,
606 enum nl80211_iftype newtype)
607{
608 wiphy_debug(hw->wiphy,
609 "%s (old type=%d, new type=%d, mac_addr=%pM)\n",
610 __func__, vif->type, newtype, vif->addr);
611 hwsim_check_magic(vif);
612
613 return 0;
614}
615
604static void mac80211_hwsim_remove_interface( 616static void mac80211_hwsim_remove_interface(
605 struct ieee80211_hw *hw, struct ieee80211_vif *vif) 617 struct ieee80211_hw *hw, struct ieee80211_vif *vif)
606{ 618{
@@ -1027,6 +1039,7 @@ static struct ieee80211_ops mac80211_hwsim_ops =
1027 .start = mac80211_hwsim_start, 1039 .start = mac80211_hwsim_start,
1028 .stop = mac80211_hwsim_stop, 1040 .stop = mac80211_hwsim_stop,
1029 .add_interface = mac80211_hwsim_add_interface, 1041 .add_interface = mac80211_hwsim_add_interface,
1042 .change_interface = mac80211_hwsim_change_interface,
1030 .remove_interface = mac80211_hwsim_remove_interface, 1043 .remove_interface = mac80211_hwsim_remove_interface,
1031 .config = mac80211_hwsim_config, 1044 .config = mac80211_hwsim_config,
1032 .configure_filter = mac80211_hwsim_configure_filter, 1045 .configure_filter = mac80211_hwsim_configure_filter,