From 3368b7f65aadac0455ba6bc184454cded0aab95d Mon Sep 17 00:00:00 2001 From: Christophe JAILLET Date: Sat, 12 May 2018 08:33:05 +0200 Subject: [PATCH] staging: lustre: Fix an error handling path in 'client_common_fill_super()' According to error handling path before and after this one, we should go to 'out_md_fid' here, instead of 'out_md', if 'obd_connect()' fails. Signed-off-by: Christophe JAILLET Reviewed-by: Andreas Dilger Signed-off-by: Greg Kroah-Hartman --- drivers/staging/lustre/lustre/llite/llite_lib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/lustre/lustre/llite/llite_lib.c b/drivers/staging/lustre/lustre/llite/llite_lib.c index 60dbe888e336..83eb2da2c9ad 100644 --- a/drivers/staging/lustre/lustre/llite/llite_lib.c +++ b/drivers/staging/lustre/lustre/llite/llite_lib.c @@ -400,11 +400,11 @@ static int client_common_fill_super(struct super_block *sb, char *md, char *dt) LCONSOLE_ERROR_MSG(0x150, "An OST (dt %s) is performing recovery, of which this client is not a part. Please wait for recovery to complete, abort, or time out.\n", dt); - goto out_md; + goto out_md_fid; } else if (err) { CERROR("%s: Cannot connect to %s: rc = %d\n", sbi->ll_dt_exp->exp_obd->obd_name, dt, err); - goto out_md; + goto out_md_fid; } sbi->ll_dt_exp->exp_connect_data = *data; -- 2.39.5