From 0496cdf20451f07befebd1cb8a770544ec0f57df Mon Sep 17 00:00:00 2001 From: Hongchao Zhang Date: Tue, 30 Jun 2020 19:22:10 +0800 Subject: [PATCH] LU-13608 tgt: abort recovery while reading update llog Abort the reading update LLOG fromt other MDTs when the recovery is aborted, then the recovery process can be aborted in time. This patch also adds watchdog for the process of the replay request to detect possible stale process. Change-Id: Ie2de041360c9eba95ef9bfd14b00ac2709e6eace Signed-off-by: Hongchao Zhang Reviewed-on: https://review.whamcloud.com/38746 Tested-by: jenkins Reviewed-by: Lai Siyao Reviewed-by: Andreas Dilger Tested-by: Maloo Reviewed-by: Oleg Drokin --- lustre/include/lustre_net.h | 4 ++++ lustre/ldlm/ldlm_lib.c | 37 ++++++++++++++++++++++++++++++++----- lustre/ptlrpc/service.c | 6 +++--- 3 files changed, 39 insertions(+), 8 deletions(-) diff --git a/lustre/include/lustre_net.h b/lustre/include/lustre_net.h index f456e6c..7f5fd29 100644 --- a/lustre/include/lustre_net.h +++ b/lustre/include/lustre_net.h @@ -2248,6 +2248,10 @@ void ptlrpc_update_export_timer(struct obd_export *exp, int ptlrpc_hr_init(void); void ptlrpc_hr_fini(void); +void ptlrpc_watchdog_init(struct delayed_work *work, timeout_t timeout); +void ptlrpc_watchdog_disable(struct delayed_work *work); +void ptlrpc_watchdog_touch(struct delayed_work *work, timeout_t timeout); + /** @} */ /* ptlrpc/import.c */ diff --git a/lustre/ldlm/ldlm_lib.c b/lustre/ldlm/ldlm_lib.c index 2b62e25f..bd2c02a 100644 --- a/lustre/ldlm/ldlm_lib.c +++ b/lustre/ldlm/ldlm_lib.c @@ -2100,6 +2100,24 @@ static int check_for_next_lock(struct lu_target *lut) return wake_up; } +static int check_update_llog(struct lu_target *lut) +{ + struct obd_device *obd = lut->lut_obd; + struct target_distribute_txn_data *tdtd = lut->lut_tdtd; + + if (obd->obd_abort_recovery) { + CDEBUG(D_HA, "waking for aborted recovery\n"); + return 1; + } + + if (atomic_read(&tdtd->tdtd_recovery_threads_count) == 0) { + CDEBUG(D_HA, "waking for completion of reading update log\n"); + return 1; + } + + return 0; +} + /** * wait for recovery events, * check its status with help of check_routine @@ -2143,15 +2161,15 @@ repeat: */ if (next_update_transno == 0) { spin_unlock(&obd->obd_recovery_task_lock); - wait_event_idle( + + while (wait_event_timeout( tdtd->tdtd_recovery_threads_waitq, - atomic_read(&tdtd->tdtd_recovery_threads_count) - == 0); + check_update_llog(lut), + cfs_time_seconds(60)) == 0); spin_lock(&obd->obd_recovery_task_lock); next_update_transno = - distribute_txn_get_next_transno( - lut->lut_tdtd); + distribute_txn_get_next_transno(tdtd); } } @@ -2465,6 +2483,8 @@ static void drop_duplicate_replay_req(struct lu_env *env, obd->obd_replayed_requests++; } +#define WATCHDOG_TIMEOUT (obd_timeout * 10) + static void replay_request_or_update(struct lu_env *env, struct lu_target *lut, struct target_recovery_data *trd, @@ -2542,8 +2562,12 @@ static void replay_request_or_update(struct lu_env *env, lustre_msg_get_transno(req->rq_reqmsg), libcfs_nid2str(req->rq_peer.nid)); + ptlrpc_watchdog_init(&thread->t_watchdog, + WATCHDOG_TIMEOUT); handle_recovery_req(thread, req, trd->trd_recovery_handler); + ptlrpc_watchdog_disable(&thread->t_watchdog); + /** * bz18031: increase next_recovery_transno before * target_request_copy_put() will drop exp_rpc reference @@ -2563,7 +2587,10 @@ static void replay_request_or_update(struct lu_env *env, LASSERT(tdtd != NULL); dtrq = distribute_txn_get_next_req(tdtd); lu_context_enter(&thread->t_env->le_ctx); + ptlrpc_watchdog_init(&thread->t_watchdog, + WATCHDOG_TIMEOUT); rc = tdtd->tdtd_replay_handler(env, tdtd, dtrq); + ptlrpc_watchdog_disable(&thread->t_watchdog); lu_context_exit(&thread->t_env->le_ctx); extend_recovery_timer(obd, obd_timeout, true); diff --git a/lustre/ptlrpc/service.c b/lustre/ptlrpc/service.c index da4899a..c55f70e 100644 --- a/lustre/ptlrpc/service.c +++ b/lustre/ptlrpc/service.c @@ -2660,18 +2660,18 @@ static void ptlrpc_watchdog_fire(struct work_struct *w) } } -static void ptlrpc_watchdog_init(struct delayed_work *work, timeout_t timeout) +void ptlrpc_watchdog_init(struct delayed_work *work, timeout_t timeout) { INIT_DELAYED_WORK(work, ptlrpc_watchdog_fire); schedule_delayed_work(work, cfs_time_seconds(timeout)); } -static void ptlrpc_watchdog_disable(struct delayed_work *work) +void ptlrpc_watchdog_disable(struct delayed_work *work) { cancel_delayed_work_sync(work); } -static void ptlrpc_watchdog_touch(struct delayed_work *work, timeout_t timeout) +void ptlrpc_watchdog_touch(struct delayed_work *work, timeout_t timeout) { struct ptlrpc_thread *thread = container_of(&work->work, struct ptlrpc_thread, -- 1.8.3.1