]> git.ipfire.org Git - thirdparty/linux.git/commit
rcutorture: Use kcalloc() instead of kzalloc()
authorQianfeng Rong <rongqianfeng@vivo.com>
Thu, 21 Aug 2025 13:41:16 +0000 (21:41 +0800)
committerPaul E. McKenney <paulmck@kernel.org>
Fri, 22 Aug 2025 13:26:22 +0000 (06:26 -0700)
commit3e15cccf3ea272ae40942e8a5a741bb69a56f654
treec11c9d20de2eb48a5b55c6558de3143cc3f50ce9
parent51c285baa3fa04b95843da8e2f9895138ea64dd4
rcutorture: Use kcalloc() instead of kzalloc()

Use kcalloc() in rcu_torture_writer() to gain built-in overflow protection,
making memory allocation safer when calculating allocation size compared to
explicit multiplication.

Change sizeof(ulo[0]) and sizeof(rgo[0]) to sizeof(*ulo) and sizeof(*rgo),
as this is more consistent with coding conventions.

Signed-off-by: Qianfeng Rong <rongqianfeng@vivo.com>
Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
kernel/rcu/rcutorture.c