diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2022-02-08 20:08:52 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2022-02-21 13:30:20 +0000 |
commit | b85ea5fa2f0bc281b9700a51ba69aebcc76b108c (patch) | |
tree | 62c15b9d0feb0c989502f796cd759ec98e0dfc16 /util/osdep.c | |
parent | 542e87c7a2d90076b07611987fd3d789865e5ea1 (diff) |
include: Move qemu_madvise() and related #defines to new qemu/madvise.h
The function qemu_madvise() and the QEMU_MADV_* constants associated
with it are used in only 10 files. Move them out of osdep.h to a new
qemu/madvise.h header that is included where it is needed.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20220208200856.3558249-2-peter.maydell@linaro.org
Diffstat (limited to 'util/osdep.c')
-rw-r--r-- | util/osdep.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util/osdep.c b/util/osdep.c index 67fbf22778..8c5cd6e431 100644 --- a/util/osdep.c +++ b/util/osdep.c @@ -38,6 +38,7 @@ extern int madvise(char *, size_t, int); #include "qemu/cutils.h" #include "qemu/sockets.h" #include "qemu/error-report.h" +#include "qemu/madvise.h" #include "monitor/monitor.h" static bool fips_enabled = false; |