[PATCH V2] docs/zh_CN: fix an inconsistent statement in dev-tools/testing-overview
#MainlineFrom:LIU Haoyang <tttturtleruss@gmail.com>
Date:
Message-ID:<20260305201100.10119-1-tttturtleruss@gmail.com>
Patch:v2 · 1/1
Language:zh_CN
Patch-ID:b6158e40fcbde1863d3977424481421075d0f7b3
Files:
Documentation/translations/zh_CN/dev-tools/testing-overview.rstLinks:lore message ↗ · raw mail ↗
Patch content 1 changed file
This patch fixes an inconsistent describtion in testing-overview.rst,which should be ``kmalloc`` instead of ``kmalloc_arry`` according tothe original text. Signed-off-by: LIU Haoyang <tttturtleruss@gmail.com>---V1 -> V2: fix some typos in the commit message Documentation/translations/zh_CN/dev-tools/testing-overview.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/translations/zh_CN/dev-tools/testing-overview.rst b/Documentation/translations/zh_CN/dev-tools/testing-overview.rstindex 286ed6b01f65..8bdc51b47b5e 100644--- a/Documentation/translations/zh_CN/dev-tools/testing-overview.rst+++ b/Documentation/translations/zh_CN/dev-tools/testing-overview.rst@@ -154,7 +154,7 @@ Smatch和Coccinelle的强项 Coccinelle可能是最容易写检查的。它在预处理器之前工作,所以用Coccinelle 检查宏中的错误更容易。Coccinelle还能为你创建补丁,这是其他工具无法做到的。 -例如,用Coccinelle你可以从 ``kmalloc_array(x, size, GFP_KERNEL)``+例如,用Coccinelle你可以从 ``kmalloc(x * size, GFP_KERNEL)`` 到 ``kmalloc_array(x, size, GFP_KERNEL)`` 进行大规模转换,这真的很 有用。如果你只是创建一个Smatch警告,并试图把转换的工作推给维护者,他们会很 恼火。你将不得不为每个警告争论是否真的可以溢出。-- 2.53.0