docs/zh_CN: fix an inconsistent statement in dev-tools/testing-overview

This patch fixes an inconsistent describtion in testing-overview.rst,
which should be ``kmalloc`` instead of ``kmalloc_arry`` according to
the original text.

Signed-off-by: LIU Haoyang <tttturtleruss@gmail.com>
Reviewed-by: Dongliang Mu <dzm91@hust.edu.cn>
Signed-off-by: Alex Shi <alexs@kernel.org>
This commit is contained in:
LIU Haoyang 2026-03-06 04:10:58 +08:00 committed by Alex Shi
parent 1eab6493f5
commit 2944216575

View File

@ -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警告并试图把转换的工作推给维护者他们会很
恼火。你将不得不为每个警告争论是否真的可以溢出。