git: 00095a089604 - stable/14 - kern/vfs_unmount.c: promote flags to uint64_t

From: Konstantin Belousov <kib_at_FreeBSD.org>
Date: Mon, 16 Feb 2026 06:23:05 UTC
The branch stable/14 has been updated by kib:

URL: https://cgit.FreeBSD.org/src/commit/?id=00095a089604aba93ef265fb0a52e170bcb77da7

commit 00095a089604aba93ef265fb0a52e170bcb77da7
Author:     Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2026-02-09 03:11:15 +0000
Commit:     Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2026-02-16 06:22:25 +0000

    kern/vfs_unmount.c: promote flags to uint64_t
    
    (cherry picked from commit 8066b8923ebfd438dc8cb840d2f57066f4daa45d)
---
 sys/compat/linux/linux_file.c | 2 +-
 sys/kern/vfs_mount.c          | 4 ++--
 sys/sys/syscallsubr.h         | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sys/compat/linux/linux_file.c b/sys/compat/linux/linux_file.c
index 1341df8bc7fc..4861dafe27b3 100644
--- a/sys/compat/linux/linux_file.c
+++ b/sys/compat/linux/linux_file.c
@@ -1169,7 +1169,7 @@ linux_oldumount(struct thread *td, struct linux_oldumount_args *args)
 int
 linux_umount(struct thread *td, struct linux_umount_args *args)
 {
-	int flags;
+	uint64_t flags;
 
 	flags = 0;
 	if ((args->flags & LINUX_MNT_FORCE) != 0) {
diff --git a/sys/kern/vfs_mount.c b/sys/kern/vfs_mount.c
index 5ca7c43269ce..b380a7fdaf6b 100644
--- a/sys/kern/vfs_mount.c
+++ b/sys/kern/vfs_mount.c
@@ -1720,11 +1720,11 @@ int
 sys_unmount(struct thread *td, struct unmount_args *uap)
 {
 
-	return (kern_unmount(td, uap->path, uap->flags));
+	return (kern_unmount(td, uap->path, (unsigned)uap->flags));
 }
 
 int
-kern_unmount(struct thread *td, const char *path, int flags)
+kern_unmount(struct thread *td, const char *path, uint64_t flags)
 {
 	struct nameidata nd;
 	struct mount *mp;
diff --git a/sys/sys/syscallsubr.h b/sys/sys/syscallsubr.h
index 8fafb8ace311..ab56b22978c2 100644
--- a/sys/sys/syscallsubr.h
+++ b/sys/sys/syscallsubr.h
@@ -390,7 +390,7 @@ int	kern_wait6(struct thread *td, enum idtype idtype, id_t id, int *status,
 int	kern_writev(struct thread *td, int fd, struct uio *auio);
 int	kern_socketpair(struct thread *td, int domain, int type, int protocol,
 	    int *rsv);
-int	kern_unmount(struct thread *td, const char *path, int flags);
+int	kern_unmount(struct thread *td, const char *path, uint64_t flags);
 
 /* flags for kern_sigaction */
 #define	KSA_OSIGSET	0x0001	/* uses osigact_t */