From aaa3156f88547586e9d928ecc00001be102cb5b3 Mon Sep 17 00:00:00 2001 From: Mr NeilBrown Date: Mon, 26 Aug 2019 14:51:00 +1000 Subject: [PATCH] LU-10467 llite: fix indentation Prior to making code changes, fix up the indentation in ll_umount_begin() Test-Parameters: trivial Signed-off-by: Mr NeilBrown Change-Id: Iac84c5e0b97e6c07d6a591f3526e7bbc66f3726a Reviewed-on: https://review.whamcloud.com/35967 Tested-by: jenkins Tested-by: Maloo Reviewed-by: Patrick Farrell Reviewed-by: James Simmons Reviewed-by: Oleg Drokin --- lustre/llite/llite_lib.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lustre/llite/llite_lib.c b/lustre/llite/llite_lib.c index 68d6d17..187d57e 100644 --- a/lustre/llite/llite_lib.c +++ b/lustre/llite/llite_lib.c @@ -2397,16 +2397,16 @@ void ll_umount_begin(struct super_block *sb) } obd->obd_force = 1; - obd = class_exp2obd(sbi->ll_dt_exp); - if (obd == NULL) { + obd = class_exp2obd(sbi->ll_dt_exp); + if (obd == NULL) { CERROR("Invalid LOV connection handle %#llx\n", - sbi->ll_dt_exp->exp_handle.h_cookie); - EXIT; - return; - } - obd->obd_force = 1; + sbi->ll_dt_exp->exp_handle.h_cookie); + EXIT; + return; + } + obd->obd_force = 1; - OBD_ALLOC_PTR(ioc_data); + OBD_ALLOC_PTR(ioc_data); if (ioc_data) { obd_iocontrol(IOC_OSC_SET_ACTIVE, sbi->ll_md_exp, sizeof *ioc_data, ioc_data, NULL); -- 1.8.3.1