From 86581aa3a01b62f1cd7797fc9df6fbc98be565ef Mon Sep 17 00:00:00 2001 From: Pierrick Bouvier Date: Mon, 31 Mar 2025 14:28:05 -0700 Subject: [PATCH] FIX bsd-user: missing include mmap-lock.h Signed-off-by: Pierrick Bouvier --- bsd-user/bsd-mem.h | 1 + bsd-user/mmap.c | 1 + 2 files changed, 2 insertions(+) diff --git a/bsd-user/bsd-mem.h b/bsd-user/bsd-mem.h index 90ca0e33775..1be906c5914 100644 --- a/bsd-user/bsd-mem.h +++ b/bsd-user/bsd-mem.h @@ -56,6 +56,7 @@ #include #include "qemu-bsd.h" +#include "exec/mmap-lock.h" #include "exec/page-protection.h" #include "user/page-protection.h" diff --git a/bsd-user/mmap.c b/bsd-user/mmap.c index 3f0df79c375..47e317517cb 100644 --- a/bsd-user/mmap.c +++ b/bsd-user/mmap.c @@ -17,6 +17,7 @@ * along with this program; if not, see . */ #include "qemu/osdep.h" +#include "exec/mmap-lock.h" #include "exec/page-protection.h" #include "user/page-protection.h" -- 2.39.5