Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/kern Allow userland to pass MNT_IGNORE (from enami)



details:   https://anonhg.NetBSD.org/src/rev/66da28564983
branches:  trunk
changeset: 515975:66da28564983
user:      christos <christos%NetBSD.org@localhost>
date:      Thu Oct 11 16:27:24 2001 +0000

description:
Allow userland to pass MNT_IGNORE (from enami)

diffstat:

 sys/kern/vfs_syscalls.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (20 lines):

diff -r 06911de9205f -r 66da28564983 sys/kern/vfs_syscalls.c
--- a/sys/kern/vfs_syscalls.c   Thu Oct 11 15:17:42 2001 +0000
+++ b/sys/kern/vfs_syscalls.c   Thu Oct 11 16:27:24 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: vfs_syscalls.c,v 1.170 2001/09/08 15:34:06 christos Exp $      */
+/*     $NetBSD: vfs_syscalls.c,v 1.171 2001/10/11 16:27:24 christos Exp $      */
 
 /*
  * Copyright (c) 1989, 1993
@@ -303,8 +303,8 @@
            MNT_NOATIME | MNT_NODEVMTIME | MNT_SYMPERM | MNT_SOFTDEP);
        mp->mnt_flag |= SCARG(uap, flags) & (MNT_NOSUID | MNT_NOEXEC |
            MNT_NODEV | MNT_SYNCHRONOUS | MNT_UNION | MNT_ASYNC |
-           MNT_NOCOREDUMP | MNT_NOATIME | MNT_NODEVMTIME | MNT_SYMPERM |
-           MNT_SOFTDEP);
+           MNT_NOCOREDUMP | MNT_IGNORE | MNT_NOATIME | MNT_NODEVMTIME |
+           MNT_SYMPERM | MNT_SOFTDEP);
        /*
         * Mount the filesystem.
         */



Home | Main Index | Thread Index | Old Index