* [Qemu-devel] [PATCH] target-i386: cpu: recover items 28-31 of ext2_feature_name
@ 2012-10-24 14:10 Eduardo Habkost
2012-10-24 16:34 ` Don Slutz
2012-10-29 14:34 ` Aurelien Jarno
0 siblings, 2 replies; 3+ messages in thread
From: Eduardo Habkost @ 2012-10-24 14:10 UTC (permalink / raw)
To: qemu-devel; +Cc: Igor Mammedov, Don Slutz, Andreas Färber
I removed a line by mistake on commit
3b671a40cab2404bc63e57db8cd3afa4ec70bfab, containing the flags lm/i64,
3dnow, and 3dnowext. This patch restores the removed line.
Reported-by: Don Slutz <Don@cloudswitch.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
---
target-i386/cpu.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/target-i386/cpu.c b/target-i386/cpu.c
index f3708e6..6411042 100644
--- a/target-i386/cpu.c
+++ b/target-i386/cpu.c
@@ -74,6 +74,7 @@ static const char *ext2_feature_name[] = {
NULL /* pat */, NULL /* pse36 */, NULL, NULL /* Linux mp */,
"nx|xd", NULL, "mmxext", NULL /* mmx */,
NULL /* fxsr */, "fxsr_opt|ffxsr", "pdpe1gb" /* AMD Page1GB */, "rdtscp",
+ NULL, "lm|i64", "3dnowext", "3dnow",
};
static const char *ext3_feature_name[] = {
"lahf_lm" /* AMD LahfSahf */, "cmp_legacy", "svm", "extapic" /* AMD ExtApicSpace */,
--
1.7.11.7
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] target-i386: cpu: recover items 28-31 of ext2_feature_name
2012-10-24 14:10 [Qemu-devel] [PATCH] target-i386: cpu: recover items 28-31 of ext2_feature_name Eduardo Habkost
@ 2012-10-24 16:34 ` Don Slutz
2012-10-29 14:34 ` Aurelien Jarno
1 sibling, 0 replies; 3+ messages in thread
From: Don Slutz @ 2012-10-24 16:34 UTC (permalink / raw)
To: Eduardo Habkost; +Cc: Igor Mammedov, qemu-devel, Andreas Färber
On 10/24/12 10:10, Eduardo Habkost wrote:
> I removed a line by mistake on commit
> 3b671a40cab2404bc63e57db8cd3afa4ec70bfab, containing the flags lm/i64,
> 3dnow, and 3dnowext. This patch restores the removed line.
>
> Reported-by: Don Slutz <Don@cloudswitch.com>
> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
> ---
> target-i386/cpu.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/target-i386/cpu.c b/target-i386/cpu.c
> index f3708e6..6411042 100644
> --- a/target-i386/cpu.c
> +++ b/target-i386/cpu.c
> @@ -74,6 +74,7 @@ static const char *ext2_feature_name[] = {
> NULL /* pat */, NULL /* pse36 */, NULL, NULL /* Linux mp */,
> "nx|xd", NULL, "mmxext", NULL /* mmx */,
> NULL /* fxsr */, "fxsr_opt|ffxsr", "pdpe1gb" /* AMD Page1GB */, "rdtscp",
> + NULL, "lm|i64", "3dnowext", "3dnow",
> };
> static const char *ext3_feature_name[] = {
> "lahf_lm" /* AMD LahfSahf */, "cmp_legacy", "svm", "extapic" /* AMD ExtApicSpace */,
Reviewed-by: Don Slutz <Don@CloudSwitch.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] target-i386: cpu: recover items 28-31 of ext2_feature_name
2012-10-24 14:10 [Qemu-devel] [PATCH] target-i386: cpu: recover items 28-31 of ext2_feature_name Eduardo Habkost
2012-10-24 16:34 ` Don Slutz
@ 2012-10-29 14:34 ` Aurelien Jarno
1 sibling, 0 replies; 3+ messages in thread
From: Aurelien Jarno @ 2012-10-29 14:34 UTC (permalink / raw)
To: Eduardo Habkost; +Cc: Igor Mammedov, Don Slutz, qemu-devel, Andreas Färber
On Wed, Oct 24, 2012 at 12:10:33PM -0200, Eduardo Habkost wrote:
> I removed a line by mistake on commit
> 3b671a40cab2404bc63e57db8cd3afa4ec70bfab, containing the flags lm/i64,
> 3dnow, and 3dnowext. This patch restores the removed line.
>
> Reported-by: Don Slutz <Don@cloudswitch.com>
> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
> ---
> target-i386/cpu.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/target-i386/cpu.c b/target-i386/cpu.c
> index f3708e6..6411042 100644
> --- a/target-i386/cpu.c
> +++ b/target-i386/cpu.c
> @@ -74,6 +74,7 @@ static const char *ext2_feature_name[] = {
> NULL /* pat */, NULL /* pse36 */, NULL, NULL /* Linux mp */,
> "nx|xd", NULL, "mmxext", NULL /* mmx */,
> NULL /* fxsr */, "fxsr_opt|ffxsr", "pdpe1gb" /* AMD Page1GB */, "rdtscp",
> + NULL, "lm|i64", "3dnowext", "3dnow",
> };
> static const char *ext3_feature_name[] = {
> "lahf_lm" /* AMD LahfSahf */, "cmp_legacy", "svm", "extapic" /* AMD ExtApicSpace */,
Thanks, applied.
--
Aurelien Jarno GPG: 1024D/F1BCDB73
aurelien@aurel32.net http://www.aurel32.net
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-10-29 14:35 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-24 14:10 [Qemu-devel] [PATCH] target-i386: cpu: recover items 28-31 of ext2_feature_name Eduardo Habkost
2012-10-24 16:34 ` Don Slutz
2012-10-29 14:34 ` Aurelien Jarno
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).