From c90841ab646c4a2b6724af2e0318d0d57a41ad53 Mon Sep 17 00:00:00 2001 From: yury Date: Fri, 8 Apr 2005 08:24:21 +0000 Subject: [PATCH] - fixed lossing error code in llog processing during zconf mount. This caused accessing not initialized MDCs in the case of errors. --- lustre/llite/llite_lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/llite/llite_lib.c b/lustre/llite/llite_lib.c index 31b2468..f75a66a 100644 --- a/lustre/llite/llite_lib.c +++ b/lustre/llite/llite_lib.c @@ -576,7 +576,7 @@ static int lustre_process_log(struct lustre_mount_data *lmd, char *profile, if (rc) CERROR("class_config_process_llog failed: rc = %d\n", rc); - rc = obd_disconnect(exp, 0); + err = obd_disconnect(exp, 0); EXIT; out_cleanup: -- 1.8.3.1