531551
diff -up util-linux-2.23.2/sys-utils/swapon.8.kzak util-linux-2.23.2/sys-utils/swapon.8
531551
--- util-linux-2.23.2/sys-utils/swapon.8.kzak	2013-06-13 09:46:10.544651682 +0200
531551
+++ util-linux-2.23.2/sys-utils/swapon.8	2014-09-24 10:57:45.855230767 +0200
531551
@@ -112,15 +112,25 @@ All devices marked as ``swap'' in
531551
 are made available, except for those with the ``noauto'' option.
531551
 Devices that are already being used as swap are silently skipped.
531551
 .TP
531551
-.B "\-d, \-\-discard"
531551
-Discard freed swap pages before they are reused, if the swap
531551
-device supports the discard or trim operation.  This may improve
531551
-performance on some Solid State Devices, but often it does not.
531551
+.B "\-d, \-\-discard\fR [=\fIpolicy\fR]"
531551
+Enable swap discards, if the swap backing device supports the discard or
531551
+trim operation. This may improve performance on some Solid State Devices,
531551
+but often it does not. The option allows one to select between two
531551
+available swap discard policies:
531551
+.BI \-\-discard=once
531551
+to perform a single-time discard operation for the whole swap area at swapon;
531551
+or
531551
+.BI \-\-discard=pages
531551
+to discard freed swap pages before they are reused, while swapping.
531551
+If no policy is selected, the default behavior is to enable both discard types.
531551
 The
531551
 .I /etc/fstab
531551
-mount option
531551
-.BI discard
531551
-may be also used to enable discard flag.
531551
+mount options
531551
+.BI discard,
531551
+.BI discard=once,
531551
+or
531551
+.BI discard=pages
531551
+may be also used to enable discard flags.
531551
 .TP
531551
 .B "\-e, \-\-ifexists"
531551
 Silently skip devices that do not exist.
531551
diff -up util-linux-2.23.2/sys-utils/swapon.c.kzak util-linux-2.23.2/sys-utils/swapon.c
531551
--- util-linux-2.23.2/sys-utils/swapon.c.kzak	2013-07-30 10:39:26.348739643 +0200
531551
+++ util-linux-2.23.2/sys-utils/swapon.c	2014-09-24 10:57:45.855230767 +0200
531551
@@ -34,9 +34,20 @@
531551
 #endif
531551
 
531551
 #ifndef SWAP_FLAG_DISCARD
531551
-# define SWAP_FLAG_DISCARD	0x10000 /* discard swap cluster after use */
531551
+# define SWAP_FLAG_DISCARD	0x10000 /* enable discard for swap */
531551
 #endif
531551
 
531551
+#ifndef SWAP_FLAG_DISCARD_ONCE
531551
+# define SWAP_FLAG_DISCARD_ONCE 0x20000 /* discard swap area at swapon-time */
531551
+#endif
531551
+
531551
+#ifndef SWAP_FLAG_DISCARD_PAGES
531551
+# define SWAP_FLAG_DISCARD_PAGES 0x40000 /* discard page-clusters after use */
531551
+#endif
531551
+
531551
+#define SWAP_FLAGS_DISCARD_VALID (SWAP_FLAG_DISCARD | SWAP_FLAG_DISCARD_ONCE | \
531551
+				  SWAP_FLAG_DISCARD_PAGES)
531551
+
531551
 #ifndef SWAP_FLAG_PREFER
531551
 # define SWAP_FLAG_PREFER	0x8000	/* set if swap priority specified */
531551
 #endif
531551
@@ -70,7 +81,7 @@ enum {
531551
 
531551
 static int all;
531551
 static int priority = -1;	/* non-prioritized swap by default */
531551
-static int discard;
531551
+static int discard;		/* don't send swap discards by default */
531551
 
531551
 /* If true, don't complain if the device/file doesn't exist */
531551
 static int ifexists;
531551
@@ -567,8 +578,22 @@ static int do_swapon(const char *orig_sp
531551
 			   << SWAP_FLAG_PRIO_SHIFT);
531551
 	}
531551
 #endif
531551
-	if (fl_discard)
531551
-		flags |= SWAP_FLAG_DISCARD;
531551
+	/*
531551
+	 * Validate the discard flags passed and set them
531551
+	 * accordingly before calling sys_swapon.
531551
+	 */
531551
+	if (fl_discard && !(fl_discard & ~SWAP_FLAGS_DISCARD_VALID)) {
531551
+		/*
531551
+		 * If we get here with both discard policy flags set,
531551
+		 * we just need to tell the kernel to enable discards
531551
+		 * and it will do correctly, just as we expect.
531551
+		 */
531551
+		if ((fl_discard & SWAP_FLAG_DISCARD_ONCE) &&
531551
+		    (fl_discard & SWAP_FLAG_DISCARD_PAGES))
531551
+			flags |= SWAP_FLAG_DISCARD;
531551
+		else
531551
+			flags |= fl_discard;
531551
+	}
531551
 
531551
 	status = swapon(special, flags);
531551
 	if (status < 0)
531551
@@ -608,12 +633,22 @@ static int swapon_all(void)
531551
 	while (mnt_table_find_next_fs(tb, itr, match_swap, NULL, &fs) == 0) {
531551
 		/* defaults */
531551
 		int pri = priority, dsc = discard, nofail = ifexists;
531551
-		char *p, *src;
531551
+		char *p, *src, *dscarg;
531551
 
531551
 		if (mnt_fs_get_option(fs, "noauto", NULL, NULL) == 0)
531551
 			continue;
531551
-		if (mnt_fs_get_option(fs, "discard", NULL, NULL) == 0)
531551
-			dsc = 1;
531551
+		if (mnt_fs_get_option(fs, "discard", &dscarg, NULL) == 0) {
531551
+			dsc |= SWAP_FLAG_DISCARD;
531551
+			if (dscarg) {
531551
+				/* only single-time discards are wanted */
531551
+				if (strcmp(dscarg, "once") == 0)
531551
+					dsc |= SWAP_FLAG_DISCARD_ONCE;
531551
+
531551
+				/* do discard for every released swap page */
531551
+				if (strcmp(dscarg, "pages") == 0)
531551
+					dsc |= SWAP_FLAG_DISCARD_PAGES;
531551
+			}
531551
+		}
531551
 		if (mnt_fs_get_option(fs, "nofail", NULL, NULL) == 0)
531551
 			nofail = 1;
531551
 		if (mnt_fs_get_option(fs, "pri", &p, NULL) == 0 && p)
531551
@@ -643,17 +678,17 @@ static void __attribute__ ((__noreturn__
531551
 	fprintf(out, _(" %s [options] [<spec>]\n"), program_invocation_short_name);
531551
 
531551
 	fputs(USAGE_OPTIONS, out);
531551
-	fputs(_(" -a, --all              enable all swaps from /etc/fstab\n"
531551
-		" -d, --discard          discard freed pages before they are reused\n"
531551
-		" -e, --ifexists         silently skip devices that do not exist\n"
531551
-		" -f, --fixpgsz          reinitialize the swap space if necessary\n"
531551
-		" -p, --priority <prio>  specify the priority of the swap device\n"
531551
-		" -s, --summary          display summary about used swap devices\n"
531551
-		"     --show[=<columns>] display summary in definable table\n"
531551
-		"     --noheadings       don't print headings, use with --show\n"
531551
-		"     --raw              use the raw output format, use with --show\n"
531551
-		"     --bytes            display swap size in bytes in --show output\n"
531551
-		" -v, --verbose          verbose mode\n"), out);
531551
+	fputs(_(" -a, --all                enable all swaps from /etc/fstab\n"
531551
+		" -d, --discard[=<policy>] enable swap discards, if supported by device\n"
531551
+		" -e, --ifexists           silently skip devices that do not exist\n"
531551
+		" -f, --fixpgsz            reinitialize the swap space if necessary\n"
531551
+		" -p, --priority <prio>    specify the priority of the swap device\n"
531551
+		" -s, --summary            display summary about used swap devices\n"
531551
+		"     --show[=<columns>]   display summary in definable table\n"
531551
+		"     --noheadings         don't print headings, use with --show\n"
531551
+		"     --raw                use the raw output format, use with --show\n"
531551
+		"     --bytes              display swap size in bytes in --show output\n"
531551
+		" -v, --verbose            verbose mode\n"), out);
531551
 
531551
 	fputs(USAGE_SEPARATOR, out);
531551
 	fputs(USAGE_HELP, out);
531551
@@ -669,6 +704,11 @@ static void __attribute__ ((__noreturn__
531551
 		" <device>               name of device to be used\n"
531551
 		" <file>                 name of file to be used\n"), out);
531551
 
531551
+	fputs(_("\nAvailable discard policy types (for --discard):\n"
531551
+		" once	  : only single-time area discards are issued. (swapon)\n"
531551
+		" pages	  : discard freed pages before they are reused.\n"
531551
+		" * if no policy is selected both discard types are enabled. (default)\n"), out);
531551
+
531551
 	fputs(_("\nAvailable columns (for --show):\n"), out);
531551
 	for (i = 0; i < NCOLS; i++)
531551
 		fprintf(out, " %4s  %s\n", infos[i].name, _(infos[i].help));
531551
@@ -693,7 +733,7 @@ int main(int argc, char *argv[])
531551
 
531551
 	static const struct option long_opts[] = {
531551
 		{ "priority", 1, 0, 'p' },
531551
-		{ "discard",  0, 0, 'd' },
531551
+		{ "discard",  2, 0, 'd' },
531551
 		{ "ifexists", 0, 0, 'e' },
531551
 		{ "summary",  0, 0, 's' },
531551
 		{ "fixpgsz",  0, 0, 'f' },
531551
@@ -716,7 +756,7 @@ int main(int argc, char *argv[])
531551
 	mnt_init_debug(0);
531551
 	mntcache = mnt_new_cache();
531551
 
531551
-	while ((c = getopt_long(argc, argv, "ahdefp:svVL:U:",
531551
+	while ((c = getopt_long(argc, argv, "ahd::efp:svVL:U:",
531551
 				long_opts, NULL)) != -1) {
531551
 		switch (c) {
531551
 		case 'a':		/* all */
531551
@@ -736,7 +776,18 @@ int main(int argc, char *argv[])
531551
 			add_uuid(optarg);
531551
 			break;
531551
 		case 'd':
531551
-			discard = 1;
531551
+			discard |= SWAP_FLAG_DISCARD;
531551
+			if (optarg) {
531551
+				if (*optarg == '=')
531551
+					optarg++;
531551
+
531551
+				if (strcmp(optarg, "once") == 0)
531551
+					discard |= SWAP_FLAG_DISCARD_ONCE;
531551
+				else if (strcmp(optarg, "pages") == 0)
531551
+					discard |= SWAP_FLAG_DISCARD_PAGES;
531551
+				else
531551
+					errx(EXIT_FAILURE, _("unsupported discard policy: %s"), optarg);
531551
+			}
531551
 			break;
531551
 		case 'e':               /* ifexists */
531551
 		        ifexists = 1;