diff options
author | Igor Mammedov | 2016-09-19 10:32:34 +0200 |
---|---|---|
committer | Michael S. Tsirkin | 2016-09-23 17:51:40 +0200 |
commit | 152fcbecad3775ba8950060616b59f6c23bc97e8 (patch) | |
tree | e4002480284bd4772a00e45fc6996f86f543e96a /include/hw/i386 | |
parent | pc: clean up COMPAT macro chaining (diff) | |
download | qemu-152fcbecad3775ba8950060616b59f6c23bc97e8.tar.gz qemu-152fcbecad3775ba8950060616b59f6c23bc97e8.tar.xz qemu-152fcbecad3775ba8950060616b59f6c23bc97e8.zip |
target-i386: turn off CPU.l3-cache only for 2.7 and older machine types
commit (14c985cff target-i386: present virtual L3 cache info for vcpus)
misplaced compat property putting it in new 2.8 machine type
which would effectively to disable feature until 2.9 is released.
Intent of commit probably should be to disable feature for 2.7
and older while allowing not yet released 2.8 to have feature
enabled by default.
Cc: qemu-stable@nongnu.org
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Reviewed-by: Marcel Apfelbaum <marcel@redhat.com>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'include/hw/i386')
-rw-r--r-- | include/hw/i386/pc.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/hw/i386/pc.h b/include/hw/i386/pc.h index b0a61f356b..29a6c9b60b 100644 --- a/include/hw/i386/pc.h +++ b/include/hw/i386/pc.h @@ -367,16 +367,15 @@ int e820_get_num_entries(void); bool e820_get_entry(int, uint32_t, uint64_t *, uint64_t *); #define PC_COMPAT_2_8 \ + +#define PC_COMPAT_2_7 \ + HW_COMPAT_2_7 \ {\ .driver = TYPE_X86_CPU,\ .property = "l3-cache",\ .value = "off",\ }, - -#define PC_COMPAT_2_7 \ - HW_COMPAT_2_7 - #define PC_COMPAT_2_6 \ HW_COMPAT_2_6 \ {\ |