* [Qemu-devel] [PATCH v2 0/2] target-i386: tsc_adjust and mpx feature names
@ 2014-08-25 20:02 Eduardo Habkost
2014-08-25 20:02 ` [Qemu-devel] [PATCH v2 1/2] target-i386: Add "mpx" CPU feature name Eduardo Habkost
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Eduardo Habkost @ 2014-08-25 20:02 UTC (permalink / raw)
To: qemu-devel, Andreas Färber; +Cc: Paolo Bonzini, Will Auld, kvm
Add feature names that are missing on the x86 CPU feature name tables. Both had
migration support implemented many months ago.
Changes v1 -> v2:
* Commit message changes only. Added reference to migration support commit IDs.
Note that v1 was not sent as a series, but as separate individual patches.
Eduardo Habkost (2):
target-i386: Add "mpx" CPU feature name
target-i386: Add "tsc_adjust" CPU feature name
target-i386/cpu.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--
1.9.3
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Qemu-devel] [PATCH v2 1/2] target-i386: Add "mpx" CPU feature name
2014-08-25 20:02 [Qemu-devel] [PATCH v2 0/2] target-i386: tsc_adjust and mpx feature names Eduardo Habkost
@ 2014-08-25 20:02 ` Eduardo Habkost
2014-08-25 20:02 ` [Qemu-devel] [PATCH v2 2/2] target-i386: Add "tsc_adjust" " Eduardo Habkost
2014-08-26 12:52 ` [Qemu-devel] [PATCH v2 0/2] target-i386: tsc_adjust and mpx feature names Paolo Bonzini
2 siblings, 0 replies; 4+ messages in thread
From: Eduardo Habkost @ 2014-08-25 20:02 UTC (permalink / raw)
To: qemu-devel, Andreas Färber; +Cc: Paolo Bonzini, Will Auld, kvm
Migration support for MPX is already implemented (commit
79e9ebebbf2a00c46fcedb6dc7dd5e12bbd30216), so we can add it to the list
of known feature names.
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
---
target-i386/cpu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/target-i386/cpu.c b/target-i386/cpu.c
index 217500c..c86cf5c 100644
--- a/target-i386/cpu.c
+++ b/target-i386/cpu.c
@@ -258,7 +258,7 @@ static const char *svm_feature_name[] = {
static const char *cpuid_7_0_ebx_feature_name[] = {
"fsgsbase", NULL, NULL, "bmi1", "hle", "avx2", NULL, "smep",
- "bmi2", "erms", "invpcid", "rtm", NULL, NULL, NULL, NULL,
+ "bmi2", "erms", "invpcid", "rtm", NULL, NULL, "mpx", NULL,
NULL, NULL, "rdseed", "adx", "smap", NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
};
--
1.9.3
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Qemu-devel] [PATCH v2 2/2] target-i386: Add "tsc_adjust" CPU feature name
2014-08-25 20:02 [Qemu-devel] [PATCH v2 0/2] target-i386: tsc_adjust and mpx feature names Eduardo Habkost
2014-08-25 20:02 ` [Qemu-devel] [PATCH v2 1/2] target-i386: Add "mpx" CPU feature name Eduardo Habkost
@ 2014-08-25 20:02 ` Eduardo Habkost
2014-08-26 12:52 ` [Qemu-devel] [PATCH v2 0/2] target-i386: tsc_adjust and mpx feature names Paolo Bonzini
2 siblings, 0 replies; 4+ messages in thread
From: Eduardo Habkost @ 2014-08-25 20:02 UTC (permalink / raw)
To: qemu-devel, Andreas Färber; +Cc: Paolo Bonzini, Will Auld, kvm
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>
---
target-i386/cpu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/target-i386/cpu.c b/target-i386/cpu.c
index c86cf5c..ea0fd9c 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,
--
1.9.3
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH v2 0/2] target-i386: tsc_adjust and mpx feature names
2014-08-25 20:02 [Qemu-devel] [PATCH v2 0/2] target-i386: tsc_adjust and mpx feature names Eduardo Habkost
2014-08-25 20:02 ` [Qemu-devel] [PATCH v2 1/2] target-i386: Add "mpx" CPU feature name Eduardo Habkost
2014-08-25 20:02 ` [Qemu-devel] [PATCH v2 2/2] target-i386: Add "tsc_adjust" " Eduardo Habkost
@ 2014-08-26 12:52 ` Paolo Bonzini
2 siblings, 0 replies; 4+ messages in thread
From: Paolo Bonzini @ 2014-08-26 12:52 UTC (permalink / raw)
To: Eduardo Habkost, qemu-devel, Andreas Färber; +Cc: Will Auld, kvm
Il 25/08/2014 22:02, Eduardo Habkost ha scritto:
> Add feature names that are missing on the x86 CPU feature name tables. Both had
> migration support implemented many months ago.
>
> Changes v1 -> v2:
> * Commit message changes only. Added reference to migration support commit IDs.
>
> Note that v1 was not sent as a series, but as separate individual patches.
>
> Eduardo Habkost (2):
> target-i386: Add "mpx" CPU feature name
> target-i386: Add "tsc_adjust" CPU feature name
>
> target-i386/cpu.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
Thanks, applied to uq/master.
Paolo
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-08-26 12:53 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-25 20:02 [Qemu-devel] [PATCH v2 0/2] target-i386: tsc_adjust and mpx feature names Eduardo Habkost
2014-08-25 20:02 ` [Qemu-devel] [PATCH v2 1/2] target-i386: Add "mpx" CPU feature name Eduardo Habkost
2014-08-25 20:02 ` [Qemu-devel] [PATCH v2 2/2] target-i386: Add "tsc_adjust" " Eduardo Habkost
2014-08-26 12:52 ` [Qemu-devel] [PATCH v2 0/2] target-i386: tsc_adjust and mpx feature names Paolo Bonzini
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).