Re: [PATCH 1/9] Ignore rild modem devices.



On Wed, 2016-06-08 at 16:20 -0400, Tony Espy wrote:
From: Mathieu Trudel-Lapierre <mathieu trudel-lapierre canonical com>

Gbp-Pq: Name Ignore-rild-modem-devices.patch
---
 src/nm-manager.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/src/nm-manager.c b/src/nm-manager.c
index 10aa3d7..c2ed1da 100644
--- a/src/nm-manager.c
+++ b/src/nm-manager.c
@@ -2089,6 +2089,14 @@ platform_link_added (NMManager *self,
              gboolean ignore = FALSE;
              gs_free_error GError *error = NULL;
 
+             /* Ignore rild modem devices, which will be handled
by their modem parent */
+             if (g_strstr_len (plink->name, NM_STRLEN ("rmnet"),
"rmnet") ||
+                     g_strstr_len (plink->name, NM_STRLEN
("rev_rmnet"), "rev_rmnet") ||
+                     g_strstr_len (plink->name, NM_STRLEN
("ccmni"), "ccmni")) {
+                     _LOGW (LOGD_HW, "Ignoring rild modem device:
%s", plink->name);
+                     return;
+             }

I'd actually put this into the WWAN factory, see just below:

              device = nm_device_factory_create_device (factory,
plink->name, plink, NULL, &ignore, &error);
              if (!device) {
                      if (!ignore) {

where &ignore is; the factory can indicate to the manager that it wants
certain devices ignored through that variable.  So you'd toss this into
src/devices/wwan/nm-wwan-factory.c::create_device() instead.

Dan


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]