wpa_supplicant: Do not register a P2P management interface on DBus

DBus client should always request the proper netdev interface. This will
be necessary to get a consistent behavior whatever driver is in use:
iwlwifi (which requires a P2P mgmt dev), ath9/10k (which does not),
etc...

Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
This commit is contained in:
Tomasz Bursztyka 2014-10-23 11:31:19 +03:00 committed by Jouni Malinen
parent 5aa839c80b
commit 21efc940f6

View file

@ -4030,14 +4030,16 @@ struct wpa_supplicant * wpa_supplicant_add_iface(struct wpa_global *global,
return NULL; return NULL;
} }
/* Notify the control interfaces about new iface */ if (iface->p2p_mgmt == 0) {
if (wpas_notify_iface_added(wpa_s)) { /* Notify the control interfaces about new iface */
wpa_supplicant_deinit_iface(wpa_s, 1, 0); if (wpas_notify_iface_added(wpa_s)) {
return NULL; wpa_supplicant_deinit_iface(wpa_s, 1, 0);
} return NULL;
}
for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next)
wpas_notify_network_added(wpa_s, ssid); wpas_notify_network_added(wpa_s, ssid);
}
wpa_s->next = global->ifaces; wpa_s->next = global->ifaces;
global->ifaces = wpa_s; global->ifaces = wpa_s;