From c534bd449ee2c64c5760b9545d791233051119d4 Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Sun, 15 Feb 2004 06:31:26 +0000 Subject: [PATCH] Support mounting ext2fs file systems with -async to the small extent that ext2fs in the kernel supports async mounts. ext2fs used to effectively force the -async flag on. -async for ext2fs only gives async (more precisely, delayed) writes for inode updates, so it is barely worth using even when it is safe. --- sbin/mount_ext2fs/mount_ext2fs.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sbin/mount_ext2fs/mount_ext2fs.c b/sbin/mount_ext2fs/mount_ext2fs.c index 875aaeef99e0..83078026437c 100644 --- a/sbin/mount_ext2fs/mount_ext2fs.c +++ b/sbin/mount_ext2fs/mount_ext2fs.c @@ -60,6 +60,7 @@ static const char rcsid[] = struct mntopt mopts[] = { MOPT_STDOPTS, + MOPT_ASYNC, MOPT_FORCE, MOPT_SYNC, MOPT_UPDATE,