From: Avi Kivity <avi@redhat.com>
To: Marcelo Tosatti <mtosatti@redhat.com>,
Glauber Costa <glommer@redhat.com>
Cc: kvm@vger.kernel.org
Subject: [PATCH 1/5] Make get_para_features() similar to upstream
Date: Tue, 1 Jun 2010 15:33:43 +0300 [thread overview]
Message-ID: <1275395627-2321-2-git-send-email-avi@redhat.com> (raw)
In-Reply-To: <1275395627-2321-1-git-send-email-avi@redhat.com>
Accept a CPUState parameter instead of a kvm_context_t.
Signed-off-by: Avi Kivity <avi@redhat.com>
---
qemu-kvm-x86.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/qemu-kvm-x86.c b/qemu-kvm-x86.c
index 95b7aa5..0eb4060 100644
--- a/qemu-kvm-x86.c
+++ b/qemu-kvm-x86.c
@@ -1132,7 +1132,7 @@ struct kvm_para_features {
{ -1, -1 }
};
-static int get_para_features(kvm_context_t kvm_context)
+static int get_para_features(CPUState *env)
{
int i, features = 0;
@@ -1184,7 +1184,7 @@ int kvm_arch_init_vcpu(CPUState *cenv)
pv_ent = &cpuid_ent[cpuid_nent++];
memset(pv_ent, 0, sizeof(*pv_ent));
pv_ent->function = KVM_CPUID_FEATURES;
- pv_ent->eax = get_para_features(kvm_context);
+ pv_ent->eax = get_para_features(cenv);
#endif
kvm_trim_features(&cenv->cpuid_features,
--
1.7.1
next prev parent reply other threads:[~2010-06-01 12:33 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-06-01 12:33 [PATCH 0/5] Use more cpuid bits from upstream Avi Kivity
2010-06-01 12:33 ` Avi Kivity [this message]
2010-06-01 14:26 ` [PATCH 1/5] Make get_para_features() similar to upstream Glauber Costa
2010-06-01 12:33 ` [PATCH 2/5] Use get_para_features() from upstream Avi Kivity
2010-06-01 14:26 ` Glauber Costa
2010-06-01 12:33 ` [PATCH 3/5] Rename kvm_arch_vcpu_init()s cenv argument to env Avi Kivity
2010-06-01 14:27 ` Glauber Costa
2010-06-01 12:33 ` [PATCH 4/5] Use skeleton of upstream's kvm_arch_init_vcpu() Avi Kivity
2010-06-01 14:29 ` Glauber Costa
2010-06-01 12:33 ` [PATCH 5/5] Use upstream's kvm_arch_init_vcpu()'s cpuid bits Avi Kivity
2010-06-01 14:51 ` Glauber Costa
2010-06-02 16:23 ` [PATCH 0/5] Use more cpuid bits from upstream Marcelo Tosatti
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1275395627-2321-2-git-send-email-avi@redhat.com \
--to=avi@redhat.com \
--cc=glommer@redhat.com \
--cc=kvm@vger.kernel.org \
--cc=mtosatti@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).