From: Samuel Ortiz Date: Fri, 13 Aug 2010 17:41:29 +0000 (+0200) Subject: Disable technology when removing device X-Git-Tag: 0.58~27 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fb9d3d9033e275954789535579a67ee8272c9b9b;p=platform%2Fupstream%2Fconnman.git Disable technology when removing device If device_disable() returns being in progress, the technology has to be disabled. Some technologies like 3G will call remove_device directly when unplugging a modem and without disabling the corresponding technology, the notifier enabled refcounts will get out pf sync. --- diff --git a/src/device.c b/src/device.c index fcbfd86..1ab2c3a 100644 --- a/src/device.c +++ b/src/device.c @@ -595,9 +595,13 @@ static void probe_driver(struct connman_element *element, gpointer user_data) static void remove_device(struct connman_device *device) { + int err; + DBG("device %p", device); - __connman_device_disable(device); + err = __connman_device_disable(device); + if (err < 0 && err == -EINPROGRESS) + __connman_technology_disable_device(device); switch (device->mode) { case CONNMAN_DEVICE_MODE_UNKNOWN: diff --git a/src/technology.c b/src/technology.c index 47ce692..46fb23f 100644 --- a/src/technology.c +++ b/src/technology.c @@ -525,7 +525,6 @@ int __connman_technology_remove_device(struct connman_device *device) DBG("device %p", device); type = __connman_device_get_service_type(device); - __connman_notifier_disable(type); __connman_notifier_unregister(type); technology = g_hash_table_lookup(device_table, device);