nl80211: Disable 11b rates on configuring P2P interface

Right now 11b rates are masked out while creating a P2P interface,
but this is always failing as the interface is down. Most drivers
allow to configure rates only when the interface is UP and running.
So let us disable 11b rates when interface type is changed into a
P2P type and it is UP and running.

Signed-hostap: Rajkumar Manoharan <rmanohar@qca.qualcomm.com>
This commit is contained in:
Rajkumar Manoharan 2012-08-10 11:35:33 +03:00 committed by Jouni Malinen
parent d99619b243
commit edb9bfba89

View file

@ -7079,6 +7079,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 */