Browse Source

iwlwifi: mvm: handle FIF_ALLMULTI when setting multicast addresses

We were ignoring the FIF_ALLMULTI flag when setting the multicast
addresses with MCAST_FILTER_CMD.  Check if this flag is set and enable
pass_all accordingly.  We also need to set the count to 0 if pass_all
is enable so we don't pass addresses to the firmware when not needed
(as doing so causes an assert).

This fixes https://bugzilla.kernel.org/show_bug.cgi?id=196741

Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
Luca Coelho 8 years ago
parent
commit
61e7d91bcf
1 changed files with 6 additions and 0 deletions
  1. 6 0
      drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c

+ 6 - 0
drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c

@@ -1643,6 +1643,12 @@ static void iwl_mvm_configure_filter(struct ieee80211_hw *hw,
 	if (!cmd)
 	if (!cmd)
 		goto out;
 		goto out;
 
 
+	if (changed_flags & FIF_ALLMULTI)
+		cmd->pass_all = !!(*total_flags & FIF_ALLMULTI);
+
+	if (cmd->pass_all)
+		cmd->count = 0;
+
 	iwl_mvm_recalc_multicast(mvm);
 	iwl_mvm_recalc_multicast(mvm);
 out:
 out:
 	mutex_unlock(&mvm->mutex);
 	mutex_unlock(&mvm->mutex);