add support for noatime mount flag

This commit is contained in:
tls 1997-01-30 09:56:10 +00:00
parent add93ce69e
commit aeb2ee9ac9
2 changed files with 6 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: mount_ffs.c,v 1.3 1996/04/13 01:31:19 jtc Exp $ */
/* $NetBSD: mount_ffs.c,v 1.4 1997/01/30 09:56:10 tls Exp $ */
/*-
* Copyright (c) 1993, 1994
@ -43,7 +43,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)mount_ufs.c 8.2 (Berkeley) 3/27/94";
#else
static char rcsid[] = "$NetBSD: mount_ffs.c,v 1.3 1996/04/13 01:31:19 jtc Exp $";
static char rcsid[] = "$NetBSD: mount_ffs.c,v 1.4 1997/01/30 09:56:10 tls Exp $";
#endif
#endif /* not lint */
@ -67,6 +67,7 @@ static const struct mntopt mopts[] = {
MOPT_SYNC,
MOPT_UPDATE,
MOPT_RELOAD,
MOPT_NOATIME,
{ NULL }
};

View File

@ -1,4 +1,4 @@
/* $NetBSD: newfs.c,v 1.22 1996/10/23 22:46:17 cgd Exp $ */
/* $NetBSD: newfs.c,v 1.23 1997/01/30 09:56:41 tls Exp $ */
/*
* Copyright (c) 1983, 1989, 1993, 1994
@ -43,7 +43,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)newfs.c 8.8 (Berkeley) 4/18/94";
#else
static char rcsid[] = "$NetBSD: newfs.c,v 1.22 1996/10/23 22:46:17 cgd Exp $";
static char rcsid[] = "$NetBSD: newfs.c,v 1.23 1997/01/30 09:56:41 tls Exp $";
#endif
#endif /* not lint */
@ -83,6 +83,7 @@ struct mntopt mopts[] = {
MOPT_STDOPTS,
MOPT_ASYNC,
MOPT_UPDATE,
MOPT_NOATIME,
{ NULL },
};