From: vitaly Date: Thu, 9 Apr 2009 16:15:57 +0000 (+0000) Subject: Branch HEAD X-Git-Tag: v1_9_167~17 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=433d3f5ffdf6f9dcbd6bbdd8848b668515d224d9;p=fs%2Flustre-release.git Branch HEAD b=17926 i=rread i=shadow limit the default journal size with 400MB --- 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) {