X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=udev.c;h=192bed97d812238ba26a0c17610d6694afbb607d;hb=f2bd44417bf2c6c99037b430f3f97cfd65a21f76;hp=d10badc8eaff1bedd93f7c83408fa233bddcf58e;hpb=c81b35c08bbd7789883993ea280e0d3772cce440;p=elogind.git diff --git a/udev.c b/udev.c index d10badc8e..192bed97d 100644 --- a/udev.c +++ b/udev.c @@ -32,7 +32,6 @@ #include "udev.h" #include "udev_lib.h" #include "udev_version.h" -#include "udev_dbus.h" #include "logging.h" #include "namedev.h" #include "udevdb.h" @@ -61,7 +60,6 @@ static void sig_handler(int signum) switch (signum) { case SIGINT: case SIGTERM: - sysbus_disconnect(); udevdb_exit(); exit(20 + signum); default: @@ -70,7 +68,6 @@ static void sig_handler(int signum) } static char *subsystem_blacklist[] = { - "net", "scsi_host", "scsi_device", "usb_host", @@ -87,6 +84,7 @@ static int udev_hotplug(void) int retval = -EINVAL; int i; struct sigaction act; + const int nofake = 0; action = get_action(); if (!action) { @@ -123,14 +121,11 @@ static int udev_hotplug(void) i++; } - /* connect to the system message bus */ - sysbus_connect(); - /* initialize udev database */ retval = udevdb_init(UDEVDB_DEFAULT); if (retval != 0) { dbg("unable to initialize database"); - goto exit_sysbus; + goto exit; } /* set up a default signal handler for now */ @@ -140,30 +135,25 @@ static int udev_hotplug(void) sigaction(SIGINT, &act, NULL); sigaction(SIGTERM, &act, NULL); - /* initialize the naming deamon */ - namedev_init(); - - if (strcmp(action, "add") == 0) - retval = udev_add_device(devpath, subsystem, 0); + if (strcmp(action, "add") == 0) { + namedev_init(); + retval = udev_add_device(devpath, subsystem, nofake); + goto action_done; + } - else if (strcmp(action, "remove") == 0) + if (strcmp(action, "remove") == 0) { retval = udev_remove_device(devpath, subsystem); - - else { - dbg("unknown action '%s'", action); - retval = -EINVAL; + goto action_done; } - udevdb_exit(); -exit_sysbus: - /* disconnect from the system message bus */ - sysbus_disconnect(); + dbg("unknown action '%s'", action); + retval = -EINVAL; -exit: - if (retval > 0) - retval = 0; +action_done: + udevdb_exit(); - return -retval; +exit: + return retval; } int main(int argc, char *argv[], char *envp[])