From: Hongchao Zhang Date: Fri, 21 Aug 2020 10:17:12 +0000 (+0800) Subject: LU-13719 lov: doesn't check lov_refcount X-Git-Tag: 2.12.6-RC1~16 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=refs%2Fchanges%2F52%2F40452%2F2;p=fs%2Flustre-release.git LU-13719 lov: doesn't check lov_refcount In lov_cleanup, the check of each OSC is protected by lov_tgt_getrefs, which will increment the "lov_refcount", so the "lov_refcount" shouldn't be checked inside because it is always larger than 0. Change-Id: I21423d4345190b3e02eb00734c127e35cbc9b1af Signed-off-by: Hongchao Zhang Reviewed-on: https://review.whamcloud.com/39702 Tested-by: jenkins Tested-by: Maloo Reviewed-by: Lai Siyao Reviewed-by: Bobi Jam Reviewed-by: Oleg Drokin Reviewed-on: https://review.whamcloud.com/40452 --- diff --git a/lustre/lov/lov_obd.c b/lustre/lov/lov_obd.c index 4ccc2b7..b9c4231 100644 --- a/lustre/lov/lov_obd.c +++ b/lustre/lov/lov_obd.c @@ -828,8 +828,7 @@ static int lov_cleanup(struct obd_device *obd) continue; /* Inactive targets may never have connected */ - if (lov->lov_tgts[i]->ltd_active || - atomic_read(&lov->lov_refcount)) + if (lov->lov_tgts[i]->ltd_active) /* We should never get here - these * should have been removed in the * disconnect. */