From: Nam Cao Date: Thu, 31 Oct 2024 15:14:25 +0000 (+0100) Subject: futex: Switch to use hrtimer_setup_sleeper_on_stack() X-Git-Tag: v6.13-rc1~171^2~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9788c1f0ff120476f58ad53e18098af8249d7e36;p=thirdparty%2Fkernel%2Flinux.git futex: Switch to use hrtimer_setup_sleeper_on_stack() hrtimer_setup_sleeper_on_stack() replaces hrtimer_init_sleeper_on_stack() to keep the naming convention consistent. Convert the usage site over to it. The conversion was done with Coccinelle. Signed-off-by: Nam Cao Signed-off-by: Thomas Gleixner Link: https://lore.kernel.org/all/d92116a17313dee283ebc959869bea80fbf94cdb.1730386209.git.namcao@linutronix.de --- diff --git a/kernel/futex/core.c b/kernel/futex/core.c index 136768ae26375..fb7214c7a36f7 100644 --- a/kernel/futex/core.c +++ b/kernel/futex/core.c @@ -140,9 +140,9 @@ futex_setup_timer(ktime_t *time, struct hrtimer_sleeper *timeout, if (!time) return NULL; - hrtimer_init_sleeper_on_stack(timeout, (flags & FLAGS_CLOCKRT) ? - CLOCK_REALTIME : CLOCK_MONOTONIC, - HRTIMER_MODE_ABS); + hrtimer_setup_sleeper_on_stack(timeout, + (flags & FLAGS_CLOCKRT) ? CLOCK_REALTIME : CLOCK_MONOTONIC, + HRTIMER_MODE_ABS); /* * If range_ns is 0, calling hrtimer_set_expires_range_ns() is * effectively the same as calling hrtimer_set_expires().