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:
4239c77
)
b=564
author
pschwan
<pschwan>
Thu, 26 Dec 2002 21:26:25 +0000
(21:26 +0000)
committer
pschwan
<pschwan>
Thu, 26 Dec 2002 21:26:25 +0000
(21:26 +0000)
committed efelix's patch to avoid loading fsfilt_* when not necessary
lustre/utils/lconf.in
patch
|
blob
|
history
diff --git
a/lustre/utils/lconf.in
b/lustre/utils/lconf.in
index
4647c9d
..
57a7edd
100755
(executable)
--- a/
lustre/utils/lconf.in
+++ b/
lustre/utils/lconf.in
@@
-1022,7
+1022,8
@@
class MDS(Module):
if self.fstype == 'extN':
self.add_lustre_module('extN', 'extN')
self.add_lustre_module('mds', 'mds')
- self.add_lustre_module('obdclass', 'fsfilt_%s'%(self.fstype))
+ if self.fstype:
+ self.add_lustre_module('obdclass', 'fsfilt_%s' % (self.fstype))
def prepare(self):
if is_prepared(self.uuid):