From 717d1f8f91abc780615bd85ac778f702aff6fde4 Mon Sep 17 00:00:00 2001 From: Vincent Donnefort Date: Tue, 19 Dec 2023 16:40:19 +0000 Subject: [PATCH] ANDROID: KVM: arm64: Fix host_smc print typo From pKVM point of view, unknown SMCs are simply forwarded, we can't consider them invalid or not. This was probably a typo following a copy of the host_hcall event. Bug: 299430621 Change-Id: Ieb53f985a5187a8b5a9feb4a95982b15cdc1b04a Signed-off-by: Vincent Donnefort --- arch/arm64/include/asm/kvm_hypevents.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm64/include/asm/kvm_hypevents.h b/arch/arm64/include/asm/kvm_hypevents.h index 8a2dd41b8569..c507d8978444 100644 --- a/arch/arm64/include/asm/kvm_hypevents.h +++ b/arch/arm64/include/asm/kvm_hypevents.h @@ -53,7 +53,7 @@ HYP_EVENT(host_smc, __entry->id = id; __entry->forwarded = forwarded; ), - HE_PRINTK("id=%llu invalid=%u", + HE_PRINTK("id=%llu forwarded=%u", __entry->id, __entry->forwarded) );