From: Andrew Perepechko Date: Mon, 21 Jun 2010 10:23:41 +0000 (+0400) Subject: b=14929 a tiny fix for mkfs build X-Git-Tag: v1_8_3_55~17 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=0cb8719e0d3a5bab54591824271cf3bb87c677e3;p=fs%2Flustre-release.git b=14929 a tiny fix for mkfs build i=Johann Lombardi i=ZhiYong Tian --- diff --git a/lustre/utils/mkfs_lustre.c b/lustre/utils/mkfs_lustre.c index bb37304..6f849a8 100644 --- a/lustre/utils/mkfs_lustre.c +++ b/lustre/utils/mkfs_lustre.c @@ -590,7 +590,7 @@ int make_lustre_backfs(struct mkfs_opts *mop) } block_count = mop->mo_device_sz / (L_BLOCK_SIZE >> 10); /* Create one less block. Bug 22906 */ - block_count = min(block_count, 4294967295); + block_count = min(block_count, 4294967295U); } if ((mop->mo_ldd.ldd_mount_type == LDD_MT_EXT3) ||