[PATCH v2 07/10] nl80211_driver: add support for P2P device in add interface
David Spinadel
dvdspndl
Sun Mar 17 13:57:17 PDT 2013
From: David Spinadel <david.spinadel at intel.com>
Don't try to assign ifindex for P2P device interface.
Signed-off-by: David Spinadel <david.spinadel at intel.com>
---
src/drivers/driver_nl80211.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/src/drivers/driver_nl80211.c b/src/drivers/driver_nl80211.c
index 75430cb..7e2ede8 100644
--- a/src/drivers/driver_nl80211.c
+++ b/src/drivers/driver_nl80211.c
@@ -6273,6 +6273,13 @@ static int nl80211_create_iface_once(struct wpa_driver_nl80211_data *drv,
return ret;
}
+ if (iftype == NL80211_IFTYPE_P2P_DEVICE) {
+ wpa_printf(MSG_DEBUG,
+ "nl80211 New P2P device interface %s created",
+ ifname);
+ return 0;
+ }
+
ifidx = if_nametoindex(ifname);
wpa_printf(MSG_DEBUG, "nl80211: New interface %s created: ifindex=%d",
ifname, ifidx);
--
1.7.10.msysgit.1
More information about the Hostap
mailing list