Re: [PATCH 3/9] sched: add sched_numa_find_nth_cpu()
From: Jakub Kicinski <kuba@kernel.org>
Date: 2023-02-20 19:47:07
Also in:
linux-crypto, linux-rdma, lkml
From: Jakub Kicinski <kuba@kernel.org>
Date: 2023-02-20 19:47:07
Also in:
linux-crypto, linux-rdma, lkml
On Thu, 16 Feb 2023 17:39:08 -0800 Yury Norov wrote:
Despite that prev_hop is used conditionally on curr_hop is not the first hop, it's initialized unconditionally. Because initialization implies dereferencing, it might happen that the code dereferences uninitialized memory, which has been spotted by KASAN. Fix it by reorganizing hop_cmp() logic. Reported-by: Bruno Goncalves <redacted> Signed-off-by: Yury Norov <yury.norov@gmail.com>
Fixed the spelling pointed out by Andy and applied, thanks!