Whamcloud - gitweb
git://git.whamcloud.com
/
fs
/
lustre-release.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e3c72ca
)
Branch: b1_4
author
adilger
<adilger>
Fri, 18 Feb 2005 23:40:03 +0000
(23:40 +0000)
committer
adilger
<adilger>
Fri, 18 Feb 2005 23:40:03 +0000
(23:40 +0000)
Minor fix to the MDS default stripe count->inode size calculations.
lustre/utils/lconf
patch
|
blob
|
history
diff --git
a/lustre/utils/lconf
b/lustre/utils/lconf
index
1da1014
..
b746c99
100755
(executable)
--- 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 > 3
5
:
+ elif stripe_count > 3
4
:
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