By default, even in client mode, hwsim always had all links
active, where it then uses them in a round-robin fashion.
Re-enable that by activating all valid links work right after
the connection is authorized.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
        if (old_state == IEEE80211_STA_NOTEXIST)
                return mac80211_hwsim_sta_add(hw, vif, sta);
 
+       /*
+        * when client is authorized (AP station marked as such),
+        * enable all links
+        */
+       if (vif->type == NL80211_IFTYPE_STATION &&
+           new_state == IEEE80211_STA_AUTHORIZED && !sta->tdls)
+               ieee80211_set_active_links_async(vif, vif->valid_links);
+
        return 0;
 }