X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fcore%2Fkmod-setup.c;h=c0a05b97aac87b7bf74fed1993d2517b82fe40bf;hb=82a2b6bb5e4e5d294f09af778c48974a7857afb6;hp=fd0a0e06adcdff080d7af7512a216ebb25e4bca8;hpb=5f68e74b6a795c5e3e1a6b3be3db85dfcd6b68c2;p=elogind.git diff --git a/src/core/kmod-setup.c b/src/core/kmod-setup.c index fd0a0e06a..c0a05b97a 100644 --- a/src/core/kmod-setup.c +++ b/src/core/kmod-setup.c @@ -44,30 +44,12 @@ static void systemd_kmod_log( /* library logging is enabled at debug only */ DISABLE_WARNING_FORMAT_NONLITERAL; - log_metav(LOG_DEBUG, file, line, fn, format, args); + log_internalv(LOG_DEBUG, 0, file, line, fn, format, args); REENABLE_WARNING; } static bool cmdline_check_kdbus(void) { - _cleanup_free_ char *line = NULL; - const char *p; - int r; - - r = proc_cmdline(&line); - if (r < 0) - return false; - - p = line; - for (;;) { - _cleanup_free_ char *word = NULL; - - r = unquote_first_word(&p, &word, true); - if (r <= 0) - return false; - - if (streq(word, "kdbus")) - return true; - } + return get_proc_cmdline_key("kdbus", NULL) > 0; } #endif @@ -81,13 +63,13 @@ int kmod_setup(void) { bool (*condition_fn)(void); } kmod_table[] = { /* auto-loading on use doesn't work before udev is up */ - { "autofs4", "/sys/class/misc/autofs", true, NULL }, + { "autofs4", "/sys/class/misc/autofs", true, NULL }, /* early configure of ::1 on the loopback device */ - { "ipv6", "/sys/module/ipv6", true, NULL }, + { "ipv6", "/sys/module/ipv6", true, NULL }, /* this should never be a module */ - { "unix", "/proc/net/unix", true, NULL }, + { "unix", "/proc/net/unix", true, NULL }, /* IPC is needed before we bring up any other services */ { "kdbus", "/sys/fs/kdbus", false, cmdline_check_kdbus },