]> www.infradead.org Git - users/willy/pagecache.git/commit
radix tree test suite: fix incorrect allocation size for pthreads
authorColin Ian King <colin.i.king@gmail.com>
Thu, 27 Jul 2023 16:09:30 +0000 (17:09 +0100)
committerAndrew Morton <akpm@linux-foundation.org>
Fri, 4 Aug 2023 20:03:40 +0000 (13:03 -0700)
commitcac7ea57a06016e4914848b707477fb07ee4ae1c
treedda1268506e3e3eca86d75c67dc3d6cb788fe1ac
parentf443fd5af5dbd531f880d3645d5dd36976cf087f
radix tree test suite: fix incorrect allocation size for pthreads

Currently the pthread allocation for each array item is based on the size
of a pthread_t pointer and should be the size of the pthread_t structure,
so the allocation is under-allocating the correct size.  Fix this by using
the size of each element in the pthreads array.

Static analysis cppcheck reported:
tools/testing/radix-tree/regression1.c:180:2: warning: Size of pointer
'threads' used instead of size of its data. [pointerSize]

Link: https://lkml.kernel.org/r/20230727160930.632674-1-colin.i.king@gmail.com
Fixes: 1366c37ed84b ("radix tree test harness")
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Cc: Konstantin Khlebnikov <koct9i@gmail.com>
Cc: Matthew Wilcox (Oracle) <willy@infradead.org>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
tools/testing/radix-tree/regression1.c