Lines Matching refs:dlm_debug
407 struct ocfs2_dlm_debug *dlm_debug)
412 list_add(&res->l_debug_list, &dlm_debug->d_lockres_tracking);
3013 struct ocfs2_dlm_debug *dlm_debug;
3015 dlm_debug = container_of(kref, struct ocfs2_dlm_debug, d_refcnt);
3017 kfree(dlm_debug);
3020 void ocfs2_put_dlm_debug(struct ocfs2_dlm_debug *dlm_debug)
3022 if (dlm_debug)
3023 kref_put(&dlm_debug->d_refcnt, ocfs2_dlm_debug_free);
3033 struct ocfs2_dlm_debug *dlm_debug;
3035 dlm_debug = kmalloc(sizeof(struct ocfs2_dlm_debug), GFP_KERNEL);
3036 if (!dlm_debug) {
3041 kref_init(&dlm_debug->d_refcnt);
3042 INIT_LIST_HEAD(&dlm_debug->d_lockres_tracking);
3043 dlm_debug->d_filter_secs = 0;
3045 return dlm_debug;
3059 struct ocfs2_dlm_debug *dlm_debug = priv->p_dlm_debug;
3065 if (&iter->l_debug_list == &dlm_debug->d_lockres_tracking) {
3145 struct ocfs2_dlm_debug *dlm_debug =
3153 if (!lockres->l_lock_wait && dlm_debug->d_filter_secs) {
3166 if (div_u64(now - last, 1000000) > dlm_debug->d_filter_secs)
3309 struct ocfs2_dlm_debug *dlm_debug = osb->osb_dlm_debug;
3315 &dlm_debug->d_filter_secs);
3316 ocfs2_get_dlm_debug(dlm_debug);
3321 struct ocfs2_dlm_debug *dlm_debug = osb->osb_dlm_debug;
3323 if (dlm_debug)
3324 ocfs2_put_dlm_debug(dlm_debug);