[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 2/5] include: Move qemu_mprotect_*() to new qemu/mprotect.h
From: |
Peter Maydell |
Subject: |
[PATCH 2/5] include: Move qemu_mprotect_*() to new qemu/mprotect.h |
Date: |
Tue, 8 Feb 2022 20:08:53 +0000 |
The qemu_mprotect_*() family of functions are used in very few files;
move them from osdep.h to a new qemu/mprotect.h.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
---
include/qemu/mprotect.h | 14 ++++++++++++++
include/qemu/osdep.h | 4 ----
tcg/region.c | 1 +
util/osdep.c | 1 +
4 files changed, 16 insertions(+), 4 deletions(-)
create mode 100644 include/qemu/mprotect.h
diff --git a/include/qemu/mprotect.h b/include/qemu/mprotect.h
new file mode 100644
index 00000000000..1e83d1433ee
--- /dev/null
+++ b/include/qemu/mprotect.h
@@ -0,0 +1,14 @@
+/*
+ * QEMU mprotect functions
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2 or later.
+ * See the COPYING file in the top-level directory.
+ */
+#ifndef QEMU_MPROTECT_H
+#define QEMU_MPROTECT_H
+
+int qemu_mprotect_rw(void *addr, size_t size);
+int qemu_mprotect_rwx(void *addr, size_t size);
+int qemu_mprotect_none(void *addr, size_t size);
+
+#endif
diff --git a/include/qemu/osdep.h b/include/qemu/osdep.h
index cb74f4571a3..2a52933ce0e 100644
--- a/include/qemu/osdep.h
+++ b/include/qemu/osdep.h
@@ -496,10 +496,6 @@ void sigaction_invoke(struct sigaction *action,
struct qemu_signalfd_siginfo *info);
#endif
-int qemu_mprotect_rw(void *addr, size_t size);
-int qemu_mprotect_rwx(void *addr, size_t size);
-int qemu_mprotect_none(void *addr, size_t size);
-
/*
* Don't introduce new usage of this function, prefer the following
* qemu_open/qemu_create that take an "Error **errp"
diff --git a/tcg/region.c b/tcg/region.c
index c46021d1604..7b4e65a52e8 100644
--- a/tcg/region.c
+++ b/tcg/region.c
@@ -25,6 +25,7 @@
#include "qemu/osdep.h"
#include "qemu/units.h"
#include "qemu/madvise.h"
+#include "qemu/mprotect.h"
#include "qapi/error.h"
#include "exec/exec-all.h"
#include "tcg/tcg.h"
diff --git a/util/osdep.c b/util/osdep.c
index 1999f42f6fc..72b678ca2e3 100644
--- a/util/osdep.c
+++ b/util/osdep.c
@@ -38,6 +38,7 @@ extern int madvise(char *, size_t, int);
#include "qemu/sockets.h"
#include "qemu/error-report.h"
#include "qemu/madvise.h"
+#include "qemu/mprotect.h"
#include "monitor/monitor.h"
static bool fips_enabled = false;
--
2.25.1
- [PATCH 5/5] include: Move hardware version declarations to new qemu/hw-version.h, (continued)
[PATCH 3/5] include: Move QEMU_MAP_* constants to mmap-alloc.h, Peter Maydell, 2022/02/08
[PATCH 4/5] include: Move qemu_[id]cache_* declarations to new qemu/cacheinfo.h, Peter Maydell, 2022/02/08
[PATCH 2/5] include: Move qemu_mprotect_*() to new qemu/mprotect.h,
Peter Maydell <=
Re: [PATCH 0/5] include: Trim some fat from osdep.h, Philippe Mathieu-Daudé, 2022/02/09
Re: [PATCH 0/5] include: Trim some fat from osdep.h, Peter Maydell, 2022/02/18