Re: [PATCH 2/9] Ignore p2p wifi devices from android
- From: Dan Williams <dcbw redhat com>
- To: Tony Espy <espy canonical com>, networkmanager-list gnome org
- Subject: Re: [PATCH 2/9] Ignore p2p wifi devices from android
- Date: Wed, 08 Jun 2016 16:38:27 -0500
On Wed, 2016-06-08 at 16:20 -0400, Tony Espy wrote:
This patch causes NMManager to ignore any p2p WiFi
devices exposed by Android WiFi drivers.
Bug-Ubuntu: https://bugs.launchpad.net/bugs/1099983
Gbp-Pq: Name Ignore-p2p-wifi-devices-from-android.patch
---
src/nm-manager.c | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/src/nm-manager.c b/src/nm-manager.c
index c2ed1da..8cf70c7 100644
--- a/src/nm-manager.c
+++ b/src/nm-manager.c
@@ -2097,6 +2097,17 @@ platform_link_added (NMManager *self,
return;
}
+ /*
+ * Ubuntu: Explicitly unmanage all p2p Wi-Fi devices
which are
+ * managed externally in the case of Wi-Fi Direct.
+ */
+ NMDeviceType devtype = nm_device_get_device_type
(device);
+ if ((plink->type == NM_LINK_TYPE_WIFI)
+ && g_strstr_len (plink->name, NM_STRLEN
("p2p"), "p2p")) {
+ nm_log_info (LOGD_HW, "(%s): ignoring P2P
wireless iface", plink->name);
+ return;
+ }
Same here; should probably go into src/devices/wifi/nm-wifi-
factory.c::create_device() instead.
Dan
device = nm_device_factory_create_device (factory,
plink->name, plink, NULL, &ignore, &error);
if (!device) {
if (!ignore) {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]