[PATCH] P2P: disable 11b rates on configuring p2p interface

Rajkumar Manoharan rmanohar
Tue Jul 31 06:56:17 PDT 2012


Right now 11b rates are masked out while creating p2p interface.
But it is always failing as the interface is down. Most of drivers
allows to configure rates only when the interface is UP and running.
So let us disable 11b rates when interface type is changed into
p2p type and it is UP and running.

Signed-hostap: Rajkumar Manoharan <rmanohar at qca.qualcomm.com>
---
 src/drivers/driver_nl80211.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/drivers/driver_nl80211.c b/src/drivers/driver_nl80211.c
index a30f2e3..8f8d227 100644
--- a/src/drivers/driver_nl80211.c
+++ b/src/drivers/driver_nl80211.c
@@ -7061,6 +7061,9 @@ done:
 		return ret;
 	}
 
+	if (is_p2p_interface(nlmode))
+		nl80211_disable_11b_rates(drv, drv->ifindex, 1);
+
 	if (is_ap_interface(nlmode)) {
 		nl80211_mgmt_unsubscribe(bss, "start AP");
 		/* Setup additional AP mode functionality if needed */
-- 
1.7.11.4




More information about the Hostap mailing list