From 1e6d526be18fa9bf7235431e18cd2a41e453c7da Mon Sep 17 00:00:00 2001 From: Zhiqi Tao Date: Thu, 16 Dec 2010 21:28:29 +1100 Subject: [PATCH] b=24291 Ignore PARAM_NETWORK in mgs_write_log_param() i=alexg i=adilger --- lustre/mgs/mgs_llog.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lustre/mgs/mgs_llog.c b/lustre/mgs/mgs_llog.c index 643b775..a8bb398 100644 --- a/lustre/mgs/mgs_llog.c +++ b/lustre/mgs/mgs_llog.c @@ -2402,6 +2402,10 @@ static int mgs_write_log_param(struct obd_device *obd, struct fs_db *fsdb, if (class_match_param(ptr, PARAM_MGSNODE, NULL) == 0) GOTO(end, rc); + /* Processed in ost/mdt */ + if (class_match_param(ptr, PARAM_NETWORK, NULL) == 0) + GOTO(end, rc); + /* Processed in mgs_write_log_ost */ if (class_match_param(ptr, PARAM_FAILMODE, NULL) == 0) { if (mti->mti_flags & LDD_F_PARAM) { -- 1.8.3.1