summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--v/vm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/v/vm.c b/v/vm.c
index ae2e9e9..6ab7fd1 100644
--- a/v/vm.c
+++ b/v/vm.c
@@ -22,7 +22,7 @@ static void do_tohost(uint64_t tohost_value)
#define pa2kva(pa) ((void*)(pa) - DRAM_BASE - MEGAPAGE_SIZE)
#define uva2kva(pa) ((void*)(pa) - MEGAPAGE_SIZE)
-#define flush_page(addr) asm volatile ("sfence.vma %0" : : "r" (addr))
+#define flush_page(addr) asm volatile ("sfence.vma %0" : : "r" (addr) : "memory")
static uint64_t lfsr63(uint64_t x)
{