All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mkfs: log stripe unit fails to influence default log size
@ 2015-02-24  2:39 Dave Chinner
  2015-02-24  3:48 ` Eric Sandeen
  0 siblings, 1 reply; 2+ messages in thread
From: Dave Chinner @ 2015-02-24  2:39 UTC (permalink / raw)
  To: xfs

From: Dave Chinner <dchinner@redhat.com>

This fails:

# mkfs.xfs -f -l version=2,su=256k /dev/ram1
log size 2560 blocks too small, minimum size is 3264 blocks
....

We should be automatically calculating an appropriate, valid log
size when the user does not specify it.

Signed-off-by: Dave Chinner <dchinner@redhat.com>
---
 mkfs/xfs_mkfs.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/mkfs/xfs_mkfs.c b/mkfs/xfs_mkfs.c
index 66711cb..5e10c4e 100644
--- a/mkfs/xfs_mkfs.c
+++ b/mkfs/xfs_mkfs.c
@@ -2441,9 +2441,11 @@ _("size %s specified for log subvolume is too large, maximum is %lld blocks\n"),
 			 */
 			logblocks = (dblocks << blocklog) / 2048;
 			logblocks = logblocks >> blocklog;
-			logblocks = MAX(min_logblocks, logblocks);
 		}
 
+		/* Log size must exceed the minimum the geometry requires. */
+		logblocks = MAX(min_logblocks, logblocks);
+
 		/* make sure the log fits wholly within an AG */
 		if (logblocks >= agsize)
 			logblocks = min_logblocks;
-- 
2.0.0

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

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

end of thread, other threads:[~2015-02-24  3:48 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-24  2:39 [PATCH] mkfs: log stripe unit fails to influence default log size Dave Chinner
2015-02-24  3:48 ` Eric Sandeen

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.