From 433d3f5ffdf6f9dcbd6bbdd8848b668515d224d9 Mon Sep 17 00:00:00 2001 From: vitaly Date: Thu, 9 Apr 2009 16:15:57 +0000 Subject: [PATCH] Branch HEAD b=17926 i=rread i=shadow limit the default journal size with 400MB --- lustre/utils/mkfs_lustre.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/utils/mkfs_lustre.c b/lustre/utils/mkfs_lustre.c index 83d9a11..95dce17 100644 --- a/lustre/utils/mkfs_lustre.c +++ b/lustre/utils/mkfs_lustre.c @@ -592,7 +592,7 @@ int make_lustre_backfs(struct mkfs_opts *mop) if (journal_sz > 1024L) journal_sz = 1024L; /* man mkfs.ext3 */ - max_sz = (256000 * L_BLOCK_SIZE) >> 20; /* 1GB */ + max_sz = (102400 * L_BLOCK_SIZE) >> 20; /* 400MB */ if (journal_sz > max_sz) journal_sz = max_sz; if (journal_sz) { -- 1.8.3.1