util-linux.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* patch: page size warning message
@ 2018-11-27 16:14 Noel Cragg
  2018-11-29 10:40 ` Karel Zak
  0 siblings, 1 reply; 2+ messages in thread
From: Noel Cragg @ 2018-11-27 16:14 UTC (permalink / raw)
  To: util-linux

[-- Attachment #1: Type: text/plain, Size: 483 bytes --]

I ran into this while experimenting with alternate page sizes:

  # mkswap -f --label swap -p 2048 swapfile 65536
  mkswap: Using user-specified page size 0, instead of the system value 4096
  mkswap: swapfile: warning: wiping old swap signature.
  Setting up swapspace version 1, size = 64 MiB (67106816 bytes)
  LABEL=swap, UUID=d0521a3a-8594-4d4b-a79b-5259aeac8d45

Note "user-specified page size 0" in the above output.  I've attached
a trival patch to fix that warning message.

[-- Attachment #2: pagesize-warning.diff --]
[-- Type: text/x-diff, Size: 520 bytes --]

diff --git a/disk-utils/mkswap.c b/disk-utils/mkswap.c
index cbb99dccb..28a139d45 100644
--- a/disk-utils/mkswap.c
+++ b/disk-utils/mkswap.c
@@ -82,7 +82,7 @@ static void init_signature_page(struct mkswap_control *ctl)
 		if (ctl->user_pagesize != kernel_pagesize)
 			warnx(_("Using user-specified page size %d, "
 				"instead of the system value %d"),
-				ctl->pagesize, kernel_pagesize);
+				ctl->user_pagesize, kernel_pagesize);
 		ctl->pagesize = ctl->user_pagesize;
 	} else
 		ctl->pagesize = kernel_pagesize;

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-11-29 10:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-27 16:14 patch: page size warning message Noel Cragg
2018-11-29 10:40 ` Karel Zak

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).