Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/include/mntopts.h,v rcsdiff: /ftp/cvs/cvsroot/src/include/mntopts.h,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.5.2.2 retrieving revision 1.13.4.3 diff -u -p -r1.5.2.2 -r1.13.4.3 --- src/include/mntopts.h 2006/01/20 20:48:42 1.5.2.2 +++ src/include/mntopts.h 2010/10/22 11:32:57 1.13.4.3 @@ -1,4 +1,4 @@ -/* $NetBSD: mntopts.h,v 1.5.2.2 2006/01/20 20:48:42 riz Exp $ */ +/* $NetBSD: mntopts.h,v 1.13.4.3 2010/10/22 11:32:57 uebayasi Exp $ */ /*- * Copyright (c) 1994 @@ -55,7 +55,9 @@ struct mntopt { #define MOPT_NOATIME { "atime", 1, MNT_NOATIME, 0 } #define MOPT_SYMPERM { "symperm", 0, MNT_SYMPERM, 0 } #define MOPT_SOFTDEP { "softdep", 0, MNT_SOFTDEP, 0 } +#define MOPT_LOG { "log", 0, MNT_LOG, 0 } #define MOPT_IGNORE { "hidden", 0, MNT_IGNORE, 0 } +#define MOPT_XIP { "xip", 0, MNT_XIP, 0 } /* Control flags. */ #define MOPT_FORCE { "force", 0, MNT_FORCE, 0 } @@ -69,6 +71,8 @@ struct mntopt { /* This is parsed by mount(8), but is ignored by specific mount_*(8)s. */ #define MOPT_AUTO { "auto", 0, 0, 0 } +#define MOPT_RUMP { "rump", 0, 0, 0 } +#define MOPT_NULL { NULL, 0, 0, 0 } #define MOPT_FSTAB_COMPAT \ MOPT_RO, \ @@ -87,7 +91,8 @@ struct mntopt { MOPT_RDONLY, \ MOPT_UNION, \ MOPT_IGNORE, \ - MOPT_SYMPERM + MOPT_SYMPERM, \ + MOPT_RUMP __BEGIN_DECLS typedef struct mntoptparse *mntoptparse_t;