mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 06:44:00 -04:00
hrtimer: Drop unnecessary pointer indirection in hrtimer_expire_entry event
This pointer indirection is a remnant from when ktime_t was a struct, today it is pointless. Drop the pointer indirection. Signed-off-by: Thomas Weißschuh (Schneider Electric) <thomas.weissschuh@linutronix.de> Signed-off-by: Thomas Gleixner <tglx@kernel.org> Link: https://patch.msgid.link/20260311-hrtimer-cleanups-v1-9-095357392669@linutronix.de
This commit is contained in:
committed by
Thomas Gleixner
parent
b94c076dd9
commit
bd803783df
@@ -1884,7 +1884,7 @@ EXPORT_SYMBOL_GPL(hrtimer_active);
|
||||
* __run_hrtimer() invocations.
|
||||
*/
|
||||
static void __run_hrtimer(struct hrtimer_cpu_base *cpu_base, struct hrtimer_clock_base *base,
|
||||
struct hrtimer *timer, ktime_t *now, unsigned long flags)
|
||||
struct hrtimer *timer, ktime_t now, unsigned long flags)
|
||||
__must_hold(&cpu_base->lock)
|
||||
{
|
||||
enum hrtimer_restart (*fn)(struct hrtimer *);
|
||||
@@ -1989,7 +1989,7 @@ static void __hrtimer_run_queues(struct hrtimer_cpu_base *cpu_base, ktime_t now,
|
||||
if (basenow < hrtimer_get_softexpires(timer))
|
||||
break;
|
||||
|
||||
__run_hrtimer(cpu_base, base, timer, &basenow, flags);
|
||||
__run_hrtimer(cpu_base, base, timer, basenow, flags);
|
||||
if (active_mask == HRTIMER_ACTIVE_SOFT)
|
||||
hrtimer_sync_wait_running(cpu_base, flags);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user