#0 force_removal (device=device@entry=0x1e37fe0, callback=callback@entry=0x0, user_data=user_data@entry=0x0) at device.c:11982 11977: { 11978: Device *d; 11979: 11980: /* look for cleartext device */ 11981: d = daemon_local_find_by_object_path (device->priv->daemon, device->priv->luks_holder); 11982: if (strcmp (d->priv->object_path, device->priv->luks_holder) == 0) 11983: { 11984: /* Check whether it is set up by us */ 11985: if (d->priv->dm_name != NULL && g_str_has_prefix (d->priv->dm_name, "udisks-luks-uuid-")) 11986: { 11987: #1 0x000000000041db2c in device_removed (device=device@entry=0x1e37fe0) at device.c:5094 5089: * 5090: * This is the normally the path where the enclosing device is 5091: * removed. Compare with device_changed() for the 5092: * other path. 5093: */ 5094: force_removal (device, NULL, NULL); 5095: } 5096: 5097: static gboolean 5098: device_initial_ata_smart_refresh (gpointer data) 5099: { #2 0x000000000040a09f in block_device_remove (d=, daemon=0x1e3a0d0) at daemon.c:1572 1567: g_warn_if_fail (g_hash_table_remove (daemon->priv->map_dev_t_to_device, GINT_TO_POINTER (device->priv->dev))); 1568: 1569: g_print ("**** EMITTING REMOVED for %s\n", device->priv->native_path); 1570: g_signal_emit (daemon, signals[DEVICE_REMOVED_SIGNAL], 0, device_local_get_object_path (device)); 1571: 1572: device_removed (device); 1573: 1574: g_object_unref (device); 1575: 1576: daemon_local_update_poller (daemon); 1577: daemon_local_update_spindown (daemon); #3 device_remove (daemon=0x1e3a0d0, d=) at daemon.c:1589 1584: { 1585: const gchar *subsystem; 1586: 1587: subsystem = g_udev_device_get_subsystem (d); 1588: if (g_strcmp0 (subsystem, "block") == 0) 1589: block_device_remove (daemon, d); 1590: else if (g_strcmp0 (subsystem, "pci") == 0) 1591: pci_device_remove (daemon, d); 1592: else if (g_strcmp0 (subsystem, "scsi_host") == 0) 1593: scsi_host_device_remove (daemon, d); 1594: else if (g_strcmp0 (subsystem, "sas_phy") == 0) #4 0x00007f58907bd138 in g_closure_invoke (closure=0x1e4b8e0, return_value=0x0, n_param_values=3, param_values=0x7fff12210330, invocation_hint=0x7fff122102d0) at /build/buildd/glib2.0-2.41.1/./gobject/gclosure.c:768 [Error: /build/buildd/glib2.0-2.41.1/./gobject/gclosure.c was not found in source tree] #5 0x00007f58907ce5fd in signal_emit_unlocked_R (node=node@entry=0x1e52b00, detail=detail@entry=0, instance=instance@entry=0x1e3c420, emission_return=emission_return@entry=0x0, instance_and_params=instance_and_params@entry=0x7fff12210330) at /build/buildd/glib2.0-2.41.1/./gobject/gsignal.c:3555 [Error: /build/buildd/glib2.0-2.41.1/./gobject/gsignal.c was not found in source tree] #6 0x00007f58907d62e9 in g_signal_emit_valist (instance=, signal_id=, detail=, var_args=var_args@entry=0x7fff122104e8) at /build/buildd/glib2.0-2.41.1/./gobject/gsignal.c:3311 [Error: /build/buildd/glib2.0-2.41.1/./gobject/gsignal.c was not found in source tree] #7 0x00007f58907d65a2 in g_signal_emit (instance=instance@entry=0x1e3c420, signal_id=, detail=detail@entry=0) at /build/buildd/glib2.0-2.41.1/./gobject/gsignal.c:3367 [Error: /build/buildd/glib2.0-2.41.1/./gobject/gsignal.c was not found in source tree] #8 0x00007f5890a019e4 in monitor_event (source=, condition=, data=0x1e3c420) at ../src/gudev/gudevclient.c:103 [Error: ../src/gudev/gudevclient.c was not found in source tree] #9 0x00007f58904eccc5 in g_main_dispatch (context=0x1e349a0) at /build/buildd/glib2.0-2.41.1/./glib/gmain.c:3064 [Error: /build/buildd/glib2.0-2.41.1/./glib/gmain.c was not found in source tree] #10 g_main_context_dispatch (context=context@entry=0x1e349a0) at /build/buildd/glib2.0-2.41.1/./glib/gmain.c:3663 [Error: /build/buildd/glib2.0-2.41.1/./glib/gmain.c was not found in source tree] #11 0x00007f58904ed028 in g_main_context_iterate (context=0x1e349a0, block=block@entry=1, dispatch=dispatch@entry=1, self=) at /build/buildd/glib2.0-2.41.1/./glib/gmain.c:3734 [Error: /build/buildd/glib2.0-2.41.1/./glib/gmain.c was not found in source tree] #12 0x00007f58904ed2ea in g_main_loop_run (loop=0x1e5cc30) at /build/buildd/glib2.0-2.41.1/./glib/gmain.c:3928 [Error: /build/buildd/glib2.0-2.41.1/./glib/gmain.c was not found in source tree] #13 0x0000000000407139 in main (argc=1, argv=0x7fff12210838) at main.c:254 249: } 250: 251: PROFILE ("main(): starting main loop"); 252: loop = g_main_loop_new (NULL, FALSE); 253: 254: g_main_loop_run (loop); 255: 256: g_object_unref (daemon); 257: g_main_loop_unref (loop); 258: ret = 0; 259: