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 3FC723DEAF7 for ; Wed, 22 Apr 2026 12:40:46 +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=1776861647; cv=none; b=rDDh6uPl3oBkt4LTZ7zejZ/03H6sXo9TpgazRiiOk+XLKtUzzPsUxL5yFVQoYqhUL7GUc71jBmX9zcLQZpvFegtrfUid08jJNNaQ6Ue/orAmL17IthCopg2OBlfK1S53Eei3tLUwND8muYUDfh2QNx524sOLImWiQUfG6qMNMQA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776861647; c=relaxed/simple; bh=jjp+IM2CvF+/Cq3DgQxWN9nCOub38O1J9ctC7sRjejY=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=dXTyUbdHQFrAP88m4L53fu0MyDqRFqJyxeM42I4WgND41Qt4YaPMPeZAJ1i6peCBKATYrA5r0/Bz+KlLJpoBgMhwgA0pr/mI1f7SWkXsu6Er7kHYLd9FG9AxGq8FzMzxwAT5VZ+pphcAyN01RovM8i/0+A9dJgko6f6zs+WhcFU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=Vcow1XCw; 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="Vcow1XCw" Received: by smtp.kernel.org (Postfix) with ESMTPSA id A320DC2BCB4; Wed, 22 Apr 2026 12:40:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1776861646; bh=jjp+IM2CvF+/Cq3DgQxWN9nCOub38O1J9ctC7sRjejY=; h=From:To:Cc:Subject:Date:From; b=Vcow1XCwk9GoVrMS/v4W7kYWERVBplW0xMkZhAJTAr+ixbRtzgSszojHhTRMAvMKN CR+4s1MTj6Zl5bidxOXyNmnGld8INzrQdpHp5VU94JWtRJJVaCdtwKJgX37Mvmd/Ig 3Et+LrrCHm9RZdQSp9eGYYpsNWlI/o4eTTtxZ+PEYRfEmjsxA6FY78UNJsrWJlsUek pZ4jP0ecNBcHBGPJIXGuhNl8njbTK9/zhO718muH0y8+bLnJUPnIyAfnbuNParNYsd vyXK8WJKiGIcHF2LyoOnjQPizi9+YYMIM9QarR9HJEID5CGVIT/zvi9ONmx+8GjV0I aYytfbQjVIQWw== From: Chao Yu To: jaegeuk@kernel.org Cc: linux-f2fs-devel@lists.sourceforge.net, linux-kernel@vger.kernel.org, Chao Yu Subject: [PATCH] f2fs: doc: fix the wrong description for critical_task_priority Date: Wed, 22 Apr 2026 18:48:47 +0800 Message-Id: <20260422104847.11243-1-chao@kernel.org> X-Mailer: git-send-email 2.40.1 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit The default value should be 120 rather than 100, fix it. Signed-off-by: Chao Yu --- Documentation/ABI/testing/sysfs-fs-f2fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/ABI/testing/sysfs-fs-f2fs b/Documentation/ABI/testing/sysfs-fs-f2fs index 27d5e88facbe..1b58c029abd0 100644 --- a/Documentation/ABI/testing/sysfs-fs-f2fs +++ b/Documentation/ABI/testing/sysfs-fs-f2fs @@ -1001,4 +1001,4 @@ Contact: "Chao Yu" Description: It can be used to tune priority of f2fs critical task, e.g. f2fs_ckpt, f2fs_gc threads, limitation as below: - it requires user has CAP_SYS_NICE capability. - - the range is [100, 139], by default the value is 100. + - the range is [100, 139], by default the value is 120. -- 2.40.1