[PATCH] KVM: arm64: Fix order of arguments to ktime_get_snapshot_id()
From: Uwe Kleine-König
Date: Thu Jun 04 2026 - 05:44:04 EST
The first argument to ktime_get_snapshot_id() is the clock ID and the
second output parameter. Fix the caller that reversed the order and thus
fix a compiler error.
Fixes: d09439210441 ("KVM: arm64: Use ktime_get_snapshot_id() to retrieve CLOCK_BOOTTIME")
Signed-off-by: Uwe Kleine-König <ukleinek@xxxxxxxxxx>
---
arch/arm64/kvm/hyp_trace.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm64/kvm/hyp_trace.c b/arch/arm64/kvm/hyp_trace.c
index 8574db7491bc..2411b4c32932 100644
--- a/arch/arm64/kvm/hyp_trace.c
+++ b/arch/arm64/kvm/hyp_trace.c
@@ -118,7 +118,7 @@ static void hyp_trace_clock_enable(struct hyp_trace_clock *hyp_clock, bool enabl
hyp_clock->running = false;
}
- ktime_get_snapshot_id(&snap, CLOCK_BOOTTIME);
+ ktime_get_snapshot_id(CLOCK_BOOTTIME, &snap);
hyp_clock->boot = ktime_to_ns(snap.systime);
hyp_clock->cycles = snap.cycles;
base-commit: d09439210441efbadd8b0aa32c1ddb1eab2f3abd
--
2.47.3