From 0eab110d6701f41f407f2fdf5358fd5e67ebd54d Mon Sep 17 00:00:00 2001 From: yanhao Date: Wed, 11 Dec 2002 17:59:53 +0000 Subject: [PATCH] yanhao: fix bug 461 wrong paths in lconf fix bug 386 lconf error message confusing --- 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 bf0f3ce..3456d6f 100755 --- a/lustre/utils/lconf.in +++ b/lustre/utils/lconf.in @@ -984,7 +984,7 @@ class MDS(Module): if self.fstype == 'extN': self.add_module(config.src_dir()+'extN', 'extN') self.add_module(config.src_dir()+'mds', 'mds') - self.add_module(config.src_dir()+'mds', 'mds_%s' % (self.fstype)) + self.add_module(config.src_dir()+'mds' , 'fsfilt_%s' % (self.fstype)) def prepare(self): if is_prepared(self.uuid): @@ -1048,6 +1048,7 @@ class OBD(Module): if self.fstype == 'extN': self.add_module(config.src_dir()+'extN', 'extN') self.add_module(config.src_dir()+'' + self.obdtype, self.obdtype) + self.add_module(config.src_dir()+'obdclass' , 'fsfilt_%s' % (self.fstype)) # need to check /proc/mounts and /etc/mtab before # formatting anything. -- 1.8.3.1