From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 59D462367D1 for ; Sun, 4 Jan 2026 02:08:05 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1767492488; cv=none; b=czz1lYin6e+IGGy4MKDtJPyZoi9/LCz+wQ4A3tc4E8tvda/AXX2axKsT8Z7CR0fjOVP7TDCB06ZpI5m4Mc+e7PcOIPIG7sD5oLniG2XHuZT5OapkqlzJ8lJWjk2A7HJhRhIeFa2c0xP5rWwOfbf3V7ohqBwtOkPUJe8TdTHf1oc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1767492488; c=relaxed/simple; bh=22CZHf9Gf9wSJLz2awwoel7QS+TzqKNNCxsacnZaqDY=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=DhDhhpAbT6RMfL56LjJI0XRhldbsPaA1jYvHxh3hHaQecZJCDl6CR38LDJmU1eLb341vjtIdDXSOLL/zs6l2WO+pjytsfMMbE0GH0m1Kuhs8d6N3LSNs5DMGuZKBBeO+0/8cK3QbMNt31GnwXOcFLYNVRYwz31jMjG5CuDtxX4E= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=E5LSrqDu; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="E5LSrqDu" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C7AB3C19422; Sun, 4 Jan 2026 02:08:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1767492485; bh=22CZHf9Gf9wSJLz2awwoel7QS+TzqKNNCxsacnZaqDY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=E5LSrqDuZYik6d5FBDbJgysD3BpzS+C4JgmOXf2j5Lx3JJ9LhGvEDyHjX2IulphkU JGRfgy3Z9NgoasYDO1pzqq5crzxurSQC3POBaSmI4QuF6v237sxtYd6KN42Qlj3mVP tuaAcheCYb5Hgu8HDPoRIMcF3T1lq8+SwrR0LrTJuo2tu0YLKwu+AH0NWeOK6LPLzx /INdZGnAPEu4kNq0LlA7l2ieISCEz3NlWWAjz+yXQw+XJiNmJi+kMYjdaq602LceNy Kk+igMny49xxA8ffyILmUvoaYOi8Oh9dVDlUGG6H3e2DUQ/sevAh7gApMkjxQRhkGO aKEAWRVStNKBg== From: Chao Yu To: jaegeuk@kernel.org Cc: linux-f2fs-devel@lists.sourceforge.net, linux-kernel@vger.kernel.org, Chao Yu Subject: [PATCH 02/14] f2fs: sysfs: introduce max_lock_elapsed_time Date: Sun, 4 Jan 2026 10:07:17 +0800 Message-ID: <20260104020729.1064529-2-chao@kernel.org> X-Mailer: git-send-email 2.52.0.358.g0dd7633a29-goog In-Reply-To: <20260104020729.1064529-1-chao@kernel.org> References: <20260104020729.1064529-1-chao@kernel.org> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit This patch add a new sysfs node in /sys/fs/f2fs//max_lock_elapsed_time. This is a threshold, once a thread enters critical region that lock covers, total elapsed time exceeds this threshold, f2fs will print tracepoint to dump information of related context. This sysfs entry can be used to control the value of threshold, by default, the value is 500 ms. Signed-off-by: Chao Yu --- Documentation/ABI/testing/sysfs-fs-f2fs | 8 ++++++++ fs/f2fs/checkpoint.c | 2 +- fs/f2fs/f2fs.h | 3 +++ fs/f2fs/super.c | 1 + fs/f2fs/sysfs.c | 2 ++ 5 files changed, 15 insertions(+), 1 deletion(-) diff --git a/Documentation/ABI/testing/sysfs-fs-f2fs b/Documentation/ABI/testing/sysfs-fs-f2fs index c39a85e84b6b..648ddd0d59f6 100644 --- a/Documentation/ABI/testing/sysfs-fs-f2fs +++ b/Documentation/ABI/testing/sysfs-fs-f2fs @@ -939,3 +939,11 @@ Description: Controls write priority in multi-devices setups. A value of 0 means allocate_section_policy = 1 Prioritize writing to section before allocate_section_hint allocate_section_policy = 2 Prioritize writing to section after allocate_section_hint =========================== ========================================================== + +What: /sys/fs/f2fs//max_lock_elapsed_time +Date: December 2025 +Contact: "Chao Yu" +Description: This is a threshold, once a thread enters critical region that lock covers, total + elapsed time exceeds this threshold, f2fs will print tracepoint to dump information + of related context. This sysfs entry can be used to control the value of threshold, + by default, the value is 500 ms. diff --git a/fs/f2fs/checkpoint.c b/fs/f2fs/checkpoint.c index bc6058a3122b..61bcf227d8ca 100644 --- a/fs/f2fs/checkpoint.c +++ b/fs/f2fs/checkpoint.c @@ -66,7 +66,7 @@ static inline void trace_lock_elapsed_time_end(struct f2fs_rwsem *sem, get_lock_elapsed_time(&tts); total_time = div_u64(tts.total_time - lc->ts.total_time, npm); - if (total_time <= MAX_LOCK_ELAPSED_TIME) + if (total_time <= sem->sbi->max_lock_elapsed_time) return; #ifdef CONFIG_64BIT diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h index 7e22315dbedd..b31589e5e19f 100644 --- a/fs/f2fs/f2fs.h +++ b/fs/f2fs/f2fs.h @@ -1951,6 +1951,9 @@ struct f2fs_sb_info { /* carve out reserved_blocks from total blocks */ bool carve_out; + /* max elapsed time threshold in critical region that lock covered */ + unsigned long long max_lock_elapsed_time; + #ifdef CONFIG_F2FS_FS_COMPRESSION struct kmem_cache *page_array_slab; /* page array entry */ unsigned int page_array_slab_size; /* default page array slab size */ diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c index 16293b0f4480..d277f082d4c0 100644 --- a/fs/f2fs/super.c +++ b/fs/f2fs/super.c @@ -4295,6 +4295,7 @@ static void init_sb_info(struct f2fs_sb_info *sbi) sbi->max_fragment_hole = DEF_FRAGMENT_SIZE; spin_lock_init(&sbi->gc_remaining_trials_lock); atomic64_set(&sbi->current_atomic_write, 0); + sbi->max_lock_elapsed_time = MAX_LOCK_ELAPSED_TIME; sbi->dir_level = DEF_DIR_LEVEL; sbi->interval_time[CP_TIME] = DEF_CP_INTERVAL; diff --git a/fs/f2fs/sysfs.c b/fs/f2fs/sysfs.c index e6a98ddd73b3..e95aa23c5bef 100644 --- a/fs/f2fs/sysfs.c +++ b/fs/f2fs/sysfs.c @@ -1263,6 +1263,7 @@ F2FS_SBI_GENERAL_RW_ATTR(blkzone_alloc_policy); F2FS_SBI_GENERAL_RW_ATTR(carve_out); F2FS_SBI_GENERAL_RW_ATTR(reserved_pin_section); F2FS_SBI_GENERAL_RW_ATTR(bggc_io_aware); +F2FS_SBI_GENERAL_RW_ATTR(max_lock_elapsed_time); /* STAT_INFO ATTR */ #ifdef CONFIG_F2FS_STAT_FS @@ -1466,6 +1467,7 @@ static struct attribute *f2fs_attrs[] = { ATTR_LIST(reserved_pin_section), ATTR_LIST(allocate_section_hint), ATTR_LIST(allocate_section_policy), + ATTR_LIST(max_lock_elapsed_time), NULL, }; ATTRIBUTE_GROUPS(f2fs); -- 2.49.0