Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 29 Apr 2010 10:04:00 +0000 (UTC)
From:      Andriy Gapon <avg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r207366 - head/sys/ufs/ffs
Message-ID:  <201004291004.o3TA404C020277@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201004291004.o3TA404C020277>