From 12c651d87301fae91ad960ea1080655be39e1cd0 Mon Sep 17 00:00:00 2001 From: nathan Date: Thu, 8 Mar 2007 17:13:23 +0000 Subject: [PATCH] must reset the upgrade flag or we try to upgrade every time the server mounts. (recently introduced bug.) --- lustre/mgs/mgs_handler.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lustre/mgs/mgs_handler.c b/lustre/mgs/mgs_handler.c index e6ba9be..b53339a 100644 --- a/lustre/mgs/mgs_handler.c +++ b/lustre/mgs/mgs_handler.c @@ -431,7 +431,8 @@ static int mgs_handle_target_reg(struct ptlrpc_request *req) } mti->mti_flags &= ~(LDD_F_VIRGIN | LDD_F_UPDATE | - LDD_F_NEED_INDEX | LDD_F_WRITECONF); + LDD_F_NEED_INDEX | LDD_F_WRITECONF | + LDD_F_UPGRADE14); mti->mti_flags |= LDD_F_REWRITE_LDD; } -- 1.8.3.1