All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] ath9k_htc: allow coexistence of IBSS with other modes
@ 2012-08-26  8:12 Antonio Quartulli
  2012-08-26  8:12 ` [PATCH 2/2] ath9k_htc: advertise allowed VIFs combination Antonio Quartulli
  2012-08-26 20:06 ` [PATCH 1/2] ath9k_htc: allow coexistence of IBSS with other modes Antonio Quartulli
  0 siblings, 2 replies; 4+ messages in thread
From: Antonio Quartulli @ 2012-08-26  8:12 UTC (permalink / raw)
  To: Luis R. Rodriguez, Sujith Manoharan
  Cc: ath9k-devel, linux-wireless, Antonio Quartulli

Practical tests shown that ath9k_htc devices allow an IBSS VIF to coexist with
VIF set up on other modes. This patch removes the check which block the creation
of any other VIF whenever an IBSS one is already present.

Signed-off-by: Antonio Quartulli <ordex@autistici.org>
---
 drivers/net/wireless/ath/ath9k/htc_drv_main.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/net/wireless/ath/ath9k/htc_drv_main.c b/drivers/net/wireless/ath/ath9k/htc_drv_main.c
index c32f6e3..c41d85f 100644
--- a/drivers/net/wireless/ath/ath9k/htc_drv_main.c
+++ b/drivers/net/wireless/ath/ath9k/htc_drv_main.c
@@ -1045,9 +1045,9 @@ static int ath9k_htc_add_interface(struct ieee80211_hw *hw,
 		return -ENOBUFS;
 	}
 
-	if (priv->num_ibss_vif ||
-	    (priv->nvifs && vif->type == NL80211_IFTYPE_ADHOC)) {
-		ath_err(common, "IBSS coexistence with other modes is not allowed\n");
+	if (priv->num_ibss_vif && vif->type == NL80211_IFTYPE_ADHOC) {
+		ath_err(common,
+			"IBSS coexistence with another IBSS is not allowed\n");
 		mutex_unlock(&priv->mutex);
 		return -ENOBUFS;
 	}
-- 
1.7.12


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-08-26 20:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-26  8:12 [PATCH 1/2] ath9k_htc: allow coexistence of IBSS with other modes Antonio Quartulli
2012-08-26  8:12 ` [PATCH 2/2] ath9k_htc: advertise allowed VIFs combination Antonio Quartulli
2012-08-26 20:17   ` Antonio Quartulli
2012-08-26 20:06 ` [PATCH 1/2] ath9k_htc: allow coexistence of IBSS with other modes Antonio Quartulli

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.