From 4bca27681f2b25cef8cba92e250087a23fb4c97e Mon Sep 17 00:00:00 2001 From: adilger Date: Fri, 18 Feb 2005 23:40:03 +0000 Subject: [PATCH] Branch: b1_4 Minor fix to the MDS default stripe count->inode size calculations. --- lustre/utils/lconf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lustre/utils/lconf b/lustre/utils/lconf index 1da1014..b746c99 100755 --- a/lustre/utils/lconf +++ b/lustre/utils/lconf @@ -1525,11 +1525,11 @@ class MDSDEV(Module): stripe_count = len(lov.devlist) if stripe_count > 77: self.inode_size = 4096 - elif stripe_count > 35: + elif stripe_count > 34: self.inode_size = 2048 elif stripe_count > 13: self.inode_size = 1024 - elif stripe_count > 3: + elif stripe_count > 2: self.inode_size = 512 else: self.inode_size = 256 -- 1.8.3.1