diff options
| author | Eduardo Habkost <ehabkost@redhat.com> | 2014-08-25 17:02:13 -0300 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2014-08-26 14:52:43 +0200 |
| commit | 7b458bfd12a71b3da6b531daedc417492c9334e0 (patch) | |
| tree | 379b1412ffbcc6946b0584ee97e3d00734e06fd8 /target-i386/cpu.c | |
| parent | 5bd8ff07e65d066f1e90f05d49ee634f3ccd2664 (diff) | |
| download | focaccia-qemu-7b458bfd12a71b3da6b531daedc417492c9334e0.tar.gz focaccia-qemu-7b458bfd12a71b3da6b531daedc417492c9334e0.zip | |
target-i386: Add "tsc_adjust" CPU feature name
tsc_adjust migration support is already implemented (commit f28558d3d37ad3bc4e35e8ac93f7bf81a0d5622c), so we can add it to the list of known feature names. Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target-i386/cpu.c')
| -rw-r--r-- | target-i386/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-i386/cpu.c b/target-i386/cpu.c index f4ee3535f0..fa811a02d1 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -257,7 +257,7 @@ static const char *svm_feature_name[] = { }; static const char *cpuid_7_0_ebx_feature_name[] = { - "fsgsbase", NULL, NULL, "bmi1", "hle", "avx2", NULL, "smep", + "fsgsbase", "tsc_adjust", NULL, "bmi1", "hle", "avx2", NULL, "smep", "bmi2", "erms", "invpcid", "rtm", NULL, NULL, "mpx", NULL, NULL, NULL, "rdseed", "adx", "smap", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, |