svn commit: r207366 - head/sys/ufs/ffs
Andriy Gapon
avg at FreeBSD.org
Thu Apr 29 10:04:01 UTC 2010
Author: avg
Date: Thu Apr 29 10:04:00 2010
New Revision: 207366
URL: http://svn.freebsd.org/changeset/base/207366
Log:
ffs_vfsops: restore alphabetic order of options in ffs_opts
The order was not correct only for nfsv4acls.
("no" prefix is ignored)
MFC after: 1 week
Modified:
head/sys/ufs/ffs/ffs_vfsops.c
Modified: head/sys/ufs/ffs/ffs_vfsops.c
==============================================================================
--- head/sys/ufs/ffs/ffs_vfsops.c Thu Apr 29 09:59:16 2010 (r207365)
+++ head/sys/ufs/ffs/ffs_vfsops.c Thu Apr 29 10:04:00 2010 (r207366)
@@ -126,8 +126,8 @@ static struct buf_ops ffs_ops = {
static const char *ffs_opts[] = { "acls", "async", "noatime", "noclusterr",
"noclusterw", "noexec", "export", "force", "from", "multilabel",
- "snapshot", "nosuid", "suiddir", "nosymfollow", "sync",
- "union", "nfsv4acls", NULL };
+ "nfsv4acls", "snapshot", "nosuid", "suiddir", "nosymfollow", "sync",
+ "union", NULL };
static int
ffs_mount(struct mount *mp)
More information about the svn-src-all
mailing list