timerqueue: Use rb_entry_safe() in timerqueue_getnext()
authorBarnabás Pőcze <pobrn@protonmail.com>
Mon, 14 Nov 2022 19:54:23 +0000 (19:54 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 7 Jan 2023 11:07:13 +0000 (12:07 +0100)
commitb1c63d8af4eb062c2e18110d869e7a2e14be61d1
tree2d0e3e1cd2b7b84ab4c7c77955f09222bca60610
parentd3715b025b967c28e86940ca9de7f92ff6490692
timerqueue: Use rb_entry_safe() in timerqueue_getnext()

[ Upstream commit 2f117484329b233455ee278f2d9b0a4356835060 ]

When `timerqueue_getnext()` is called on an empty timer queue, it will
use `rb_entry()` on a NULL pointer, which is invalid. Fix that by using
`rb_entry_safe()` which handles NULL pointers.

This has not caused any issues so far because the offset of the `rb_node`
member in `timerqueue_node` is 0, so `rb_entry()` is essentially a no-op.

Fixes: 511885d7061e ("lib/timerqueue: Rely on rbtree semantics for next timer")
Signed-off-by: Barnabás Pőcze <pobrn@protonmail.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/r/20221114195421.342929-1-pobrn@protonmail.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
include/linux/timerqueue.h