svn commit: r218035 - stable/8/sys/gnu/fs/ext2fs

John Baldwin jhb at FreeBSD.org
Fri Jan 28 20:21:42 UTC 2011


Author: jhb
Date: Fri Jan 28 20:21:41 2011
New Revision: 218035
URL: http://svn.freebsd.org/changeset/base/218035

Log:
  MFC 217702:
  Restore support for the 'async' and 'sync' mount options lost when
  switching to nmount(2).  While here, sort the options.

Modified:
  stable/8/sys/gnu/fs/ext2fs/ext2_vfsops.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)

Modified: stable/8/sys/gnu/fs/ext2fs/ext2_vfsops.c
==============================================================================
--- stable/8/sys/gnu/fs/ext2fs/ext2_vfsops.c	Fri Jan 28 20:06:51 2011	(r218034)
+++ stable/8/sys/gnu/fs/ext2fs/ext2_vfsops.c	Fri Jan 28 20:21:41 2011	(r218035)
@@ -114,9 +114,9 @@ static int	ext2_check_sb_compat(struct e
 static int	compute_sb_data(struct vnode * devvp,
 		    struct ext2_super_block * es, struct ext2_sb_info * fs);
 
-static const char *ext2_opts[] = { "from", "export", "acls", "noexec",
-    "noatime", "union", "suiddir", "multilabel", "nosymfollow",
-    "noclusterr", "noclusterw", "force", NULL };
+static const char *ext2_opts[] = { "acls", "async", "noatime", "noclusterr", 
+    "noclusterw", "noexec", "export", "force", "from", "multilabel",
+    "suiddir", "nosymfollow", "sync", "union", NULL };
 
 /*
  * VFS Operations.


More information about the svn-src-stable-8 mailing list