summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhrs <hrs@FreeBSD.org>2014-10-10 03:20:12 +0000
committerhrs <hrs@FreeBSD.org>2014-10-10 03:20:12 +0000
commit855894fab050627beb596386d77c68fdab1f4d79 (patch)
tree9b89890fe231ec5672c88982c69d5d60a8752589
parent772c59f39454dddc0128e9c5e2f82e31cfc7b2c8 (diff)
downloadFreeBSD-src-855894fab050627beb596386d77c68fdab1f4d79.zip
FreeBSD-src-855894fab050627beb596386d77c68fdab1f4d79.tar.gz
Do not add late flag when file= is specified because it has a bad
side-effect. The specified file should exist before the fstab line. Reported by: wblock (long time ago) MFC after: 1 day
-rw-r--r--sbin/swapon/swapon.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/sbin/swapon/swapon.c b/sbin/swapon/swapon.c
index 5c6086d..033c40a 100644
--- a/sbin/swapon/swapon.c
+++ b/sbin/swapon/swapon.c
@@ -172,15 +172,8 @@ main(int argc, char **argv)
continue;
if (strstr(fsp->fs_mntops, "noauto") != NULL)
continue;
- /*
- * Forcibly enable "late" option when file= is
- * specified. This is because mounting file
- * systems with rw option is typically
- * required to make the backing store ready.
- */
if (which_prog != SWAPOFF &&
- (strstr(fsp->fs_mntops, "late") != NULL ||
- strstr(fsp->fs_mntops, "file=") != NULL) &&
+ strstr(fsp->fs_mntops, "late") &&
late == 0)
continue;
swfile = swap_on_off(fsp->fs_spec, 1,
OpenPOWER on IntegriCloud