diff options
author | Emilio G. Cota <cota@braap.org> | 2018-09-10 19:27:41 -0400 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2018-10-02 18:47:55 +0200 |
commit | 5fe21034292a2758639d6e66822a53770c7bcc0d (patch) | |
tree | 106e7fde1b2b7b5ef1772c2b098008cb269fb6d3 /include/qemu | |
parent | 87a09cdc529ddb5daa660e3c442b793032a2169d (diff) | |
download | qemu-5fe21034292a2758639d6e66822a53770c7bcc0d.zip qemu-5fe21034292a2758639d6e66822a53770c7bcc0d.tar.gz qemu-5fe21034292a2758639d6e66822a53770c7bcc0d.tar.bz2 |
cacheinfo: add i/d cache_linesize_log
Signed-off-by: Emilio G. Cota <cota@braap.org>
Message-Id: <20180910232752.31565-2-cota@braap.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/qemu')
-rw-r--r-- | include/qemu/osdep.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/qemu/osdep.h b/include/qemu/osdep.h index a91068d..a746a5e 100644 --- a/include/qemu/osdep.h +++ b/include/qemu/osdep.h @@ -570,6 +570,8 @@ 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; #endif |