[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <3d56cf129c2cf1cf53f19ebe3c23a803@208suo.com>
Date: Fri, 14 Jul 2023 12:57:42 +0800
From: chenqingyun001@...suo.com
To: maz@...nel.org, oliver.upton@...ux.dev, catalin.marinas@....com,
will@...nel.org
Cc: kvmarm@...ts.linux.dev, linux-kernel@...r.kernel.org,
james.morse@....com, suzuki.poulose@....com, yuzenghui@...wei.com
Subject: [PATCH] KVM: arm64:Use #include <linux/kprobes.h> instead of
<asm/kprobes.h>
Since <asm/kprobes.h> is a kernel-proprietary header file, it
should not be included by user-space programs.
And <linux/kprobes.h> is a public header file,
which provides some functions for registering
and unregistering probes
Signed-off-by: Qingyun Chen <chenqingyun001@...suo.com>
---
arch/arm64/kvm/hyp/vhe/sysreg-sr.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm64/kvm/hyp/vhe/sysreg-sr.c
b/arch/arm64/kvm/hyp/vhe/sysreg-sr.c
index b35a178e7e0d..072471df8b1b 100644
--- a/arch/arm64/kvm/hyp/vhe/sysreg-sr.c
+++ b/arch/arm64/kvm/hyp/vhe/sysreg-sr.c
@@ -9,7 +9,7 @@
#include <linux/compiler.h>
#include <linux/kvm_host.h>
-#include <asm/kprobes.h>
+#include <linux/kprobes.h>
#include <asm/kvm_asm.h>
#include <asm/kvm_emulate.h>
#include <asm/kvm_hyp.h>
Powered by blists - more mailing lists