We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52a321d commit e046582Copy full SHA for e046582
src/core/kmod-setup.c
@@ -116,7 +116,7 @@ int kmod_setup(void) {
116
else if (r == KMOD_PROBE_APPLY_BLACKLIST)
117
log_info("Module '%s' is blacklisted", kmod_module_get_name(mod));
118
else {
119
- bool print_warning = kmod_table[i].warn_if_unavailable || (r < 0 && r != -ENOSYS);
+ bool print_warning = kmod_table[i].warn_if_unavailable || (r < 0 && r != -ENOENT);
120
121
log_full_errno(print_warning ? LOG_WARNING : LOG_DEBUG, r,
122
"Failed to insert module '%s': %m", kmod_module_get_name(mod));
0 commit comments