diff options
| author | Karel Zak <kzak@redhat.com> | 2025-09-11 09:35:58 +0200 |
|---|---|---|
| committer | Karel Zak <kzak@redhat.com> | 2025-09-11 09:35:58 +0200 |
| commit | 8a7bc1ab00d91e8a17ca8cb2907ca3c2a73381dd (patch) | |
| tree | ae02997e6ee3a92bf9e0607cae85d0a617ca764d | |
| parent | 6134498c46cdcf4954331d36ba4da87af2e35e8e (diff) | |
| download | util-linux-8a7bc1ab00d91e8a17ca8cb2907ca3c2a73381dd.tar.gz | |
libmount: don't report fsconfig errors with "nofail"
The new kernel API returns EINVAL on FSCONFIG_CMD_CREATE if the mount
source is inaccessible. We do not want to report this as an error when
the "nofail" mount option is specified.
Note that EINVAL may also be returned by other fsconfig() settings, so
we need to check whether a source is specified and whether it is really
inaccessible. This is just a heuristic (as with the old mount(2)).
Fixes: https://github.com/util-linux/util-linux/issues/3741
Signed-off-by: Karel Zak <kzak@redhat.com>
| -rw-r--r-- | libmount/src/context_mount.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libmount/src/context_mount.c b/libmount/src/context_mount.c index 9a1832550c..04734b73cd 100644 --- a/libmount/src/context_mount.c +++ b/libmount/src/context_mount.c @@ -1662,6 +1662,12 @@ int mnt_context_get_mount_excode( /* Error with already generated messages (by kernel or libmount) */ if (buf && mnt_context_get_nmesgs(cxt, 'e')) { + if (syserr == ENOENT + && uflags & MNT_MS_NOFAIL + && cxt->syscall_name && strcmp(cxt->syscall_name, "fsconfig") == 0 + && src && !mnt_is_path(src)) + return MNT_EX_SUCCESS; + if (cxt->syscall_name) { size_t len = snprintf(buf, bufsz, _("%s() failed: "), |
