From: rcorreia Date: Fri, 8 May 2009 18:10:49 +0000 (+0000) Subject: Branch b_hd_kdmu X-Git-Tag: GIT_EPOCH_B_HD_KDMU~2^4~100 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=327462bfb4137ca0189758b9d34f33e01b21c2f1;p=fs%2Flustre-release.git Branch b_hd_kdmu b=18582 Fix broken HEAD->b_hd_kdmu update due to half-applied patch to libcfs/lustre modules. --- diff --git a/lustre/include/lustre_net.h b/lustre/include/lustre_net.h index b1dcac3..f94116b 100644 --- a/lustre/include/lustre_net.h +++ b/lustre/include/lustre_net.h @@ -658,6 +658,10 @@ struct ptlrpc_thread { * put watchdog in the structure per thread b=14840 */ struct lc_watchdog *t_watchdog; + /** + * the svc this thread belonged to b=18582 + */ + struct ptlrpc_service *t_svc; cfs_waitq_t t_ctl_waitq; struct lu_env *t_env; }; diff --git a/lustre/ldlm/ldlm_lockd.c b/lustre/ldlm/ldlm_lockd.c index f6fe4a7..6237590 100644 --- a/lustre/ldlm/ldlm_lockd.c +++ b/lustre/ldlm/ldlm_lockd.c @@ -2260,7 +2260,7 @@ static int ldlm_setup(void) ldlm_state->ldlm_cb_service = ptlrpc_init_svc(LDLM_NBUFS, LDLM_BUFSIZE, LDLM_MAXREQSIZE, LDLM_MAXREPSIZE, LDLM_CB_REQUEST_PORTAL, - LDLM_CB_REPLY_PORTAL, 1800, + LDLM_CB_REPLY_PORTAL, 2, ldlm_callback_handler, "ldlm_cbd", ldlm_svc_proc_dir, NULL, ldlm_min_threads, ldlm_max_threads, @@ -2275,7 +2275,7 @@ static int ldlm_setup(void) ldlm_state->ldlm_cancel_service = ptlrpc_init_svc(LDLM_NBUFS, LDLM_BUFSIZE, LDLM_MAXREQSIZE, LDLM_MAXREPSIZE, LDLM_CANCEL_REQUEST_PORTAL, - LDLM_CANCEL_REPLY_PORTAL, 6000, + LDLM_CANCEL_REPLY_PORTAL, 6, ldlm_cancel_handler, "ldlm_canceld", ldlm_svc_proc_dir, NULL, ldlm_min_threads, ldlm_max_threads, diff --git a/lustre/mdt/mdt_handler.c b/lustre/mdt/mdt_handler.c index 91c9351..7608740 100644 --- a/lustre/mdt/mdt_handler.c +++ b/lustre/mdt/mdt_handler.c @@ -349,7 +349,7 @@ static int mdt_statfs(struct mdt_thread_info *info) /* This will trigger a watchdog timeout */ OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_STATFS_LCW_SLEEP, (MDT_SERVICE_WATCHDOG_FACTOR * - at_get(&svc->srv_at_estimate) / 1000) + 1); + at_get(&svc->srv_at_estimate)) + 1); rc = mdt_check_ucred(info); if (rc) diff --git a/lustre/mdt/mdt_internal.h b/lustre/mdt/mdt_internal.h index 6028dba..cffc9c7 100644 --- a/lustre/mdt/mdt_internal.h +++ b/lustre/mdt/mdt_internal.h @@ -175,7 +175,7 @@ struct mdt_device { #define mdt_client_bitmap_lock mdt_lut.lut_client_bitmap_lock #define mdt_client_bitmap mdt_lut.lut_client_bitmap -#define MDT_SERVICE_WATCHDOG_FACTOR (2000) +#define MDT_SERVICE_WATCHDOG_FACTOR (2) #define MDT_ROCOMPAT_SUPP (OBD_ROCOMPAT_LOVOBJID) #define MDT_INCOMPAT_SUPP (OBD_INCOMPAT_MDT | OBD_INCOMPAT_COMMON_LR) #define MDT_COS_DEFAULT (1) diff --git a/lustre/mgs/mgs_handler.c b/lustre/mgs/mgs_handler.c index 588e720..d002537 100644 --- a/lustre/mgs/mgs_handler.c +++ b/lustre/mgs/mgs_handler.c @@ -253,7 +253,7 @@ static int mgs_setup(struct obd_device *obd, struct lustre_cfg *lcfg) mgs->mgs_service = ptlrpc_init_svc(MGS_NBUFS, MGS_BUFSIZE, MGS_MAXREQSIZE, MGS_MAXREPSIZE, MGS_REQUEST_PORTAL, - MGC_REPLY_PORTAL, 2000, + MGC_REPLY_PORTAL, 2, mgs_handle, LUSTRE_MGS_NAME, obd->obd_proc_entry, target_print_req, MGS_THREADS_AUTO_MIN, MGS_THREADS_AUTO_MAX, diff --git a/lustre/ost/ost_internal.h b/lustre/ost/ost_internal.h index 519bbb3..6775362 100644 --- a/lustre/ost/ost_internal.h +++ b/lustre/ost/ost_internal.h @@ -37,7 +37,7 @@ #ifndef OST_INTERNAL_H #define OST_INTERNAL_H -#define OSS_SERVICE_WATCHDOG_FACTOR 2000 +#define OSS_SERVICE_WATCHDOG_FACTOR 2 /* * tunables for per-thread page pool (bug 5137) diff --git a/lustre/ptlrpc/service.c b/lustre/ptlrpc/service.c index 3b5fa02..f288e49 100644 --- a/lustre/ptlrpc/service.c +++ b/lustre/ptlrpc/service.c @@ -1923,10 +1923,7 @@ static int ptlrpc_main(void *arg) */ cfs_waitq_signal(&thread->t_ctl_waitq); - thread->t_watchdog = lc_watchdog_add(max_t(int, obd_timeout, AT_OFF ? 0 : - at_get(&svc->srv_at_estimate)) - * svc->srv_watchdog_factor, - NULL, NULL); + thread->t_watchdog = lc_watchdog_add(GET_TIMEOUT(svc), NULL, NULL); spin_lock(&svc->srv_lock); svc->srv_threads_running++; @@ -1959,10 +1956,7 @@ static int ptlrpc_main(void *arg) svc->srv_at_check, &lwi); - lc_watchdog_touch_ms(thread->t_watchdog, max_t(int, obd_timeout, - AT_OFF ? 0 : - at_get(&svc->srv_at_estimate)) * - svc->srv_watchdog_factor); + lc_watchdog_touch(thread->t_watchdog, GET_TIMEOUT(svc)); ptlrpc_check_rqbd_pool(svc); @@ -2262,6 +2256,7 @@ int ptlrpc_start_thread(struct obd_device *dev, struct ptlrpc_service *svc) id = svc->srv_threads_started++; spin_unlock(&svc->srv_lock); + thread->t_svc = svc; thread->t_id = id; sprintf(name, "%s_%02d", svc->srv_thread_name, id); d.dev = dev; diff --git a/lustre/quota/quota_context.c b/lustre/quota/quota_context.c index cccc3fd..537f101 100644 --- a/lustre/quota/quota_context.c +++ b/lustre/quota/quota_context.c @@ -940,7 +940,8 @@ schedule_dqacq(struct obd_device *obd, struct lustre_quota_ctxt *qctxt, l_wait_event(qctxt->lqc_wait_for_qmaster, check_qm(qctxt), &lwi); CDEBUG(D_QUOTA, "wake up when quota master is back\n"); - lc_watchdog_touch(oti->oti_thread->t_watchdog); + lc_watchdog_touch(oti->oti_thread->t_watchdog, + GET_TIMEOUT(oti->oti_thread->t_svc)); } else { spin_unlock(&qctxt->lqc_lock); } diff --git a/lustre/quota/quota_interface.c b/lustre/quota/quota_interface.c index ef40fd8..16ed64e 100644 --- a/lustre/quota/quota_interface.c +++ b/lustre/quota/quota_interface.c @@ -393,7 +393,8 @@ static int quota_chk_acq_common(struct obd_device *obd, unsigned int uid, l_wait_event(qctxt->lqc_wait_for_qmaster, check_qm(qctxt), &lwi); CDEBUG(D_QUOTA, "wake up when quota master is back\n"); - lc_watchdog_touch(oti->oti_thread->t_watchdog); + lc_watchdog_touch(oti->oti_thread->t_watchdog, + GET_TIMEOUT(oti->oti_thread->t_svc)); } else { spin_unlock(&qctxt->lqc_lock); } @@ -424,7 +425,8 @@ static int quota_chk_acq_common(struct obd_device *obd, unsigned int uid, struct l_wait_info lwi; if (oti && oti->oti_thread && oti->oti_thread->t_watchdog) - lc_watchdog_touch(oti->oti_thread->t_watchdog); + lc_watchdog_touch(oti->oti_thread->t_watchdog, + GET_TIMEOUT(oti->oti_thread->t_svc)); CDEBUG(D_QUOTA, "rc: %d, count_err: %d\n", rc, count_err++);