git: fbacadf103dc - main - vmm: Add vmm_fence.c to SRCS for vmm.ko on riscv

From: Mark Johnston <markj_at_FreeBSD.org>
Date: Fri, 14 Feb 2025 15:33:45 UTC
The branch main has been updated by markj:

URL: https://cgit.FreeBSD.org/src/commit/?id=fbacadf103dc81cea0f233f11adb73ef43ee4a75

commit fbacadf103dc81cea0f233f11adb73ef43ee4a75
Author:     Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2025-02-14 15:26:49 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2025-02-14 15:26:49 +0000

    vmm: Add vmm_fence.c to SRCS for vmm.ko on riscv
    
    Fixes:  8f6b66a9d3f2 ("riscv vmm: implement SBI RFNC extension.")
---
 sys/modules/vmm/Makefile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys/modules/vmm/Makefile b/sys/modules/vmm/Makefile
index c990852ae441..a6ea90567bb8 100644
--- a/sys/modules/vmm/Makefile
+++ b/sys/modules/vmm/Makefile
@@ -152,6 +152,7 @@ svm_genassym.o: offset.inc
 .elif ${MACHINE_CPUARCH} == "riscv"
 
 SRCS+=	vmm_aplic.c	\
+	vmm_fence.c	\
 	vmm_riscv.c	\
 	vmm_sbi.c	\
 	vmm_switch.S	\