[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <31be9696f7a019a700176a2549992bfd@208suo.com>
Date: Fri, 14 Jul 2023 13:09:10 +0800
From: chenqingyun001@...suo.com
To: catalin.marinas@....com, will@...nel.org
Cc: linux-kernel@...r.kernel.org
Subject: [PATCH] KVM: arm64:#include <linux/cacheflush.h> instead of
<asm/cacheflush.h>
<linux/cacheflush.h> is a generic header file,
while <asm/cacheflush.h> is an x86
architecture-specific header file
Signed-off-by: Qingyun Chen <chenqingyun001@...suo.com>
---
arch/arm64/lib/uaccess_flushcache.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm64/lib/uaccess_flushcache.c
b/arch/arm64/lib/uaccess_flushcache.c
index 7510d1a23124..cf8052f6e091 100644
--- a/arch/arm64/lib/uaccess_flushcache.c
+++ b/arch/arm64/lib/uaccess_flushcache.c
@@ -5,7 +5,7 @@
#include <linux/uaccess.h>
#include <asm/barrier.h>
-#include <asm/cacheflush.h>
+#include <linux/cacheflush.h>
void memcpy_flushcache(void *dst, const void *src, size_t cnt)
{
Powered by blists - more mailing lists