diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2022-02-08 20:08:55 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2022-02-21 13:30:20 +0000 |
commit | ad768e6f2a3397ec88ae874ad743df5d7c8c1936 (patch) | |
tree | f34e909ce9b700b1033830c389642e0105195936 /include/qemu/osdep.h | |
parent | 5b3e34315a8b2d985299735d685c71d481815bef (diff) | |
download | qemu-ad768e6f2a3397ec88ae874ad743df5d7c8c1936.zip qemu-ad768e6f2a3397ec88ae874ad743df5d7c8c1936.tar.gz qemu-ad768e6f2a3397ec88ae874ad743df5d7c8c1936.tar.bz2 |
include: Move qemu_[id]cache_* declarations to new qemu/cacheinfo.h
The qemu_icache_linesize, qemu_icache_linesize_log,
qemu_dcache_linesize, and qemu_dcache_linesize_log variables are not
used in many files. Move them out of osdep.h to a new
qemu/cacheinfo.h, and document them.
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-5-peter.maydell@linaro.org
Diffstat (limited to 'include/qemu/osdep.h')
-rw-r--r-- | include/qemu/osdep.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/qemu/osdep.h b/include/qemu/osdep.h index 165448b..61808ed 100644 --- a/include/qemu/osdep.h +++ b/include/qemu/osdep.h @@ -616,11 +616,6 @@ pid_t qemu_fork(Error **errp); extern uintptr_t qemu_real_host_page_size; extern intptr_t qemu_real_host_page_mask; -extern int qemu_icache_linesize; -extern int qemu_icache_linesize_log; -extern int qemu_dcache_linesize; -extern int qemu_dcache_linesize_log; - /* * After using getopt or getopt_long, if you need to parse another set * of options, then you must reset optind. Unfortunately the way to |