From: pschwan Date: Thu, 26 Dec 2002 21:26:25 +0000 (+0000) Subject: b=564 X-Git-Tag: v1_7_100~1^248~133 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=1cfe079bc9fb0ab0ffa76933e0b36ea93908b393;p=fs%2Flustre-release.git b=564 committed efelix's patch to avoid loading fsfilt_* when not necessary --- diff --git a/lustre/utils/lconf.in b/lustre/utils/lconf.in index 4647c9d..57a7edd 100755 --- 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):