Whamcloud - gitweb
b=564
authorpschwan <pschwan>
Thu, 26 Dec 2002 21:26:25 +0000 (21:26 +0000)
committerpschwan <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

index 4647c9d..57a7edd 100755 (executable)
@@ -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):