Clear MNT_LOCAL flag on FUSE file system. It can be local or remote, but
authormvs <mvs@openbsd.org>
Tue, 7 May 2024 14:27:11 +0000 (14:27 +0000)
committermvs <mvs@openbsd.org>
Tue, 7 May 2024 14:27:11 +0000 (14:27 +0000)
kernel can't tell the difference.

From Kirill A. Korinsky

ok claudio mpi

sys/miscfs/fuse/fuse_vfsops.c

index 5b30b15..c848894 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: fuse_vfsops.c,v 1.45 2021/05/01 16:18:29 gnezdo Exp $ */
+/* $OpenBSD: fuse_vfsops.c,v 1.46 2024/05/07 14:27:11 mvs Exp $ */
 /*
  * Copyright (c) 2012-2013 Sylvestre Gallon <ccna.syl@gmail.com>
  *
@@ -114,7 +114,8 @@ fusefs_mount(struct mount *mp, const char *path, void *data,
        fmp->allow_other = args->allow_other;
 
        mp->mnt_data = fmp;
-       mp->mnt_flag |= MNT_LOCAL;
+       /* FUSE file system is not truly local. */
+       mp->mnt_flag &= ~MNT_LOCAL;
        vfs_getnewfsid(mp);
 
        memset(mp->mnt_stat.f_mntonname, 0, MNAMELEN);