Received: by 2002:a25:4158:0:0:0:0:0 with SMTP id o85csp1304280yba; Sun, 5 May 2019 03:30:13 -0700 (PDT) X-Google-Smtp-Source: APXvYqz8SM4JTALvVuc4gW9P4rOjENoioXcjm7p0ME/j9g/PnasuKtB52FKNNGJWJGYVfcWDJRVW X-Received: by 2002:a65:554d:: with SMTP id t13mr6090965pgr.171.1557052213729; Sun, 05 May 2019 03:30:13 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1557052213; cv=none; d=google.com; s=arc-20160816; b=PLlp6+wF86K+QMJMvwbq9K1QPRLbOHSN1A7TqHlqtO1TzpKQxgVQQmYnhh18sxUisr guWvdmnXOym+eWigUU0Q+9KxALxChtj4bKiDzdlpDUpdoXugUVv3KCeFYkbb5V2tqL9Q ddoE9GQrlvQKmydsbyP0sFXoL88Mwnm4o8Vnl/dWkxdH70Ckb1IobZSc6ihrybRqgfDY ctDUxmytvvLebNet6mCqV/g8ORASauxOms74lQF/qXPi2ecI1XxQrtllCXWmhDym/SEd 7ldPU+UFLl3EXEd/GphbQ1lYqohM48iPSfRxsqCY4vg+SRXf0IDCfj9uBhLdS4W5dYb4 9R7Q== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:message-id:date:subject:cc:to:from; bh=fpUgH/n71UA6D0N9KmZsCn3vP8QymU8Em9w90aKZV+c=; b=S4dRF644W4dshtdpK+T0v5QW/LYrgvOhrlrQqbpwCRgdfDyoVT3v0jIQTxRZ+lWLTk h33ELN796mjhq7R99qHe6gNqT0oc4Tj2T2+Ip7PeIQEOaBVG81PP9UzqTbn0KElQJtzQ 0mre1YZgH7bM1xmRDmueb51/FLqmoPRKWUjXBMZwC4gLvoRyjm03bhW7paX5iYf68j1V sCadj6ITrgP/iAxRW2Mo0eJBH/5eYnysYvyjeNZL03YtwbXPbwQ9Mc6BOJM6j7digldN jgB5pRr6NCRtFoCMnt53Vyj/TXAw/z9F0yKj5aTCZrNZlj0ElfDbi44GL3mNVO1ycHhU 4aFA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id n26si9820599pgv.445.2019.05.05.03.29.57; Sun, 05 May 2019 03:30:13 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727259AbfEEKNc (ORCPT + 99 others); Sun, 5 May 2019 06:13:32 -0400 Received: from smtp2.provo.novell.com ([137.65.250.81]:49064 "EHLO smtp2.provo.novell.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725873AbfEEKNc (ORCPT ); Sun, 5 May 2019 06:13:32 -0400 Received: from ghe-pc.suse.asia (prva10-snat226-1.provo.novell.com [137.65.226.35]) by smtp2.provo.novell.com with ESMTP (TLS encrypted); Sun, 05 May 2019 04:13:27 -0600 From: Gang He To: mark@fasheh.com, jlbec@evilplan.org, jiangqi903@gmail.com Cc: Gang He , linux-kernel@vger.kernel.org, ocfs2-devel@oss.oracle.com, akpm@linux-foundation.org Subject: [PATCH V3 2/2] ocfs2: add locking filter debugfs file Date: Sun, 5 May 2019 18:13:16 +0800 Message-Id: <20190505101316.17601-1-ghe@suse.com> X-Mailer: git-send-email 2.12.3 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Add locking filter debugfs file, which is used to filter lock resources dump from locking_state debugfs file. We use d_filter_secs field to filter lock resources dump, the default d_filter_secs(0) value filters nothing, otherwise, only dump the last N seconds active lock resources. This enhancement can avoid dumping lots of old records. The d_filter_secs value can be changed via locking_filter file. Compared with v2, ocfs2_dlm_init_debug() returns directly with error when creating locking filter debugfs file is failed, since ocfs2_dlm_shutdown_debug() will handle this failure perfectly. Compared with v1, the main change is to add CONFIG_OCFS2_FS_STATS macro definition judgment. Signed-off-by: Gang He --- fs/ocfs2/dlmglue.c | 36 ++++++++++++++++++++++++++++++++++++ fs/ocfs2/ocfs2.h | 2 ++ 2 files changed, 38 insertions(+) diff --git a/fs/ocfs2/dlmglue.c b/fs/ocfs2/dlmglue.c index dccf4136f8c1..fbe4562cf4fe 100644 --- a/fs/ocfs2/dlmglue.c +++ b/fs/ocfs2/dlmglue.c @@ -3006,6 +3006,8 @@ struct ocfs2_dlm_debug *ocfs2_new_dlm_debug(void) kref_init(&dlm_debug->d_refcnt); INIT_LIST_HEAD(&dlm_debug->d_lockres_tracking); dlm_debug->d_locking_state = NULL; + dlm_debug->d_locking_filter = NULL; + dlm_debug->d_filter_secs = 0; out: return dlm_debug; } @@ -3104,11 +3106,33 @@ static int ocfs2_dlm_seq_show(struct seq_file *m, void *v) { int i; char *lvb; + u32 now, last = 0; struct ocfs2_lock_res *lockres = v; + struct ocfs2_dlm_debug *dlm_debug = + ((struct ocfs2_dlm_seq_priv *)m->private)->p_dlm_debug; if (!lockres) return -EINVAL; + if (dlm_debug->d_filter_secs) { + now = ktime_to_timespec(ktime_get()).tv_sec; +#ifdef CONFIG_OCFS2_FS_STATS + if (lockres->l_lock_prmode.ls_last > + lockres->l_lock_exmode.ls_last) + last = lockres->l_lock_prmode.ls_last; + else + last = lockres->l_lock_exmode.ls_last; +#endif + /* + * Use d_filter_secs field to filter lock resources dump, + * the default d_filter_secs(0) value filters nothing, + * otherwise, only dump the last N seconds active lock + * resources. + */ + if ((now - last) > dlm_debug->d_filter_secs) + return 0; + } + seq_printf(m, "0x%x\t", OCFS2_DLM_DEBUG_STR_VERSION); if (lockres->l_type == OCFS2_LOCK_TYPE_DENTRY) @@ -3258,6 +3282,17 @@ static int ocfs2_dlm_init_debug(struct ocfs2_super *osb) goto out; } + dlm_debug->d_locking_filter = debugfs_create_u32("locking_filter", + 0600, + osb->osb_debug_root, + &dlm_debug->d_filter_secs); + if (!dlm_debug->d_locking_filter) { + ret = -EINVAL; + mlog(ML_ERROR, + "Unable to create locking filter debugfs file.\n"); + goto out; + } + ocfs2_get_dlm_debug(dlm_debug); out: return ret; @@ -3269,6 +3304,7 @@ static void ocfs2_dlm_shutdown_debug(struct ocfs2_super *osb) if (dlm_debug) { debugfs_remove(dlm_debug->d_locking_state); + debugfs_remove(dlm_debug->d_locking_filter); ocfs2_put_dlm_debug(dlm_debug); } } diff --git a/fs/ocfs2/ocfs2.h b/fs/ocfs2/ocfs2.h index 8efa022684f4..f4da51099889 100644 --- a/fs/ocfs2/ocfs2.h +++ b/fs/ocfs2/ocfs2.h @@ -237,6 +237,8 @@ struct ocfs2_orphan_scan { struct ocfs2_dlm_debug { struct kref d_refcnt; struct dentry *d_locking_state; + struct dentry *d_locking_filter; + u32 d_filter_secs; struct list_head d_lockres_tracking; }; -- 2.21.0