From 1cfe079bc9fb0ab0ffa76933e0b36ea93908b393 Mon Sep 17 00:00:00 2001 From: pschwan Date: Thu, 26 Dec 2002 21:26:25 +0000 Subject: [PATCH] b=564 committed efelix's patch to avoid loading fsfilt_* when not necessary --- lustre/utils/lconf.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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): -- 1.8.3.1