1
0
mirror of https://github.com/systemd/systemd.git synced 2024-11-05 23:51:28 +03:00

Merge pull request #166 from zonque/kmod

kmod-setup: don't print warning on -ENOSYS
This commit is contained in:
David Herrmann 2015-06-11 17:01:39 +02:00
commit 9d1b6c8bca

View File

@ -117,10 +117,12 @@ int kmod_setup(void) {
log_info("Inserted module '%s'", kmod_module_get_name(mod)); log_info("Inserted module '%s'", kmod_module_get_name(mod));
else if (r == KMOD_PROBE_APPLY_BLACKLIST) else if (r == KMOD_PROBE_APPLY_BLACKLIST)
log_info("Module '%s' is blacklisted", kmod_module_get_name(mod)); log_info("Module '%s' is blacklisted", kmod_module_get_name(mod));
else else {
log_full_errno((kmod_table[i].warn_if_unavailable || (r < 0 && r != -ENOENT)) ? LOG_WARNING : LOG_DEBUG, bool print_warning = kmod_table[i].warn_if_unavailable || (r < 0 && r != -ENOSYS);
r,
log_full_errno(print_warning ? LOG_WARNING : LOG_DEBUG, r,
"Failed to insert module '%s': %m", kmod_module_get_name(mod)); "Failed to insert module '%s': %m", kmod_module_get_name(mod));
}
kmod_module_unref(mod); kmod_module_unref(mod);
} }