[PATCH V2 05/23] nl80211: Add support for P2P Device in add interface

Arend van Spriel arend
Wed May 29 02:07:52 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 77a8ff9..708b83f 100644
--- a/src/drivers/driver_nl80211.c
+++ b/src/drivers/driver_nl80211.c
@@ -6480,6 +6480,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.4





More information about the Hostap mailing list