From: Jan Kiszka <jan.kiszka@siemens.com>
To: Avi Kivity <avi@redhat.com>, Marcelo Tosatti <mtosatti@redhat.com>
Cc: qemu-devel@nongnu.org, kvm@vger.kernel.org
Subject: [Qemu-devel] [PATCH v2 08/15] kvm: Rename kvm_arch_process_irqchip_events to async_events
Date: Fri, 18 Feb 2011 11:11:19 +0100 [thread overview]
Message-ID: <7e2a86f38f508743ea7abb0c74cfe9301abb63f1.1298023878.git.jan.kiszka@siemens.com> (raw)
In-Reply-To: <cover.1298023878.git.jan.kiszka@siemens.com>
In-Reply-To: <cover.1298023878.git.jan.kiszka@siemens.com>
We will broaden the scope of this function on x86 beyond irqchip events.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
---
kvm-all.c | 2 +-
kvm.h | 2 +-
target-i386/kvm.c | 2 +-
target-ppc/kvm.c | 2 +-
target-s390x/kvm.c | 2 +-
5 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/kvm-all.c b/kvm-all.c
index e6a7de4..6522a32 100644
--- a/kvm-all.c
+++ b/kvm-all.c
@@ -893,7 +893,7 @@ int kvm_cpu_exec(CPUState *env)
DPRINTF("kvm_cpu_exec()\n");
- if (kvm_arch_process_irqchip_events(env)) {
+ if (kvm_arch_process_async_events(env)) {
env->exit_request = 0;
return EXCP_HLT;
}
diff --git a/kvm.h b/kvm.h
index 59b2c29..7bc04e0 100644
--- a/kvm.h
+++ b/kvm.h
@@ -102,7 +102,7 @@ void kvm_arch_post_run(CPUState *env, struct kvm_run *run);
int kvm_arch_handle_exit(CPUState *env, struct kvm_run *run);
-int kvm_arch_process_irqchip_events(CPUState *env);
+int kvm_arch_process_async_events(CPUState *env);
int kvm_arch_get_registers(CPUState *env);
diff --git a/target-i386/kvm.c b/target-i386/kvm.c
index f909661..a416554 100644
--- a/target-i386/kvm.c
+++ b/target-i386/kvm.c
@@ -1675,7 +1675,7 @@ void kvm_arch_post_run(CPUState *env, struct kvm_run *run)
cpu_set_apic_base(env->apic_state, run->apic_base);
}
-int kvm_arch_process_irqchip_events(CPUState *env)
+int kvm_arch_process_async_events(CPUState *env)
{
if (kvm_irqchip_in_kernel()) {
return 0;
diff --git a/target-ppc/kvm.c b/target-ppc/kvm.c
index 3924f4b..6c99a16 100644
--- a/target-ppc/kvm.c
+++ b/target-ppc/kvm.c
@@ -259,7 +259,7 @@ void kvm_arch_post_run(CPUState *env, struct kvm_run *run)
{
}
-int kvm_arch_process_irqchip_events(CPUState *env)
+int kvm_arch_process_async_events(CPUState *env)
{
return 0;
}
diff --git a/target-s390x/kvm.c b/target-s390x/kvm.c
index b349812..5673a95 100644
--- a/target-s390x/kvm.c
+++ b/target-s390x/kvm.c
@@ -177,7 +177,7 @@ void kvm_arch_post_run(CPUState *env, struct kvm_run *run)
{
}
-int kvm_arch_process_irqchip_events(CPUState *env)
+int kvm_arch_process_async_events(CPUState *env)
{
return 0;
}
--
1.7.1
next prev parent reply other threads:[~2011-02-18 10:11 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-02-18 10:11 [Qemu-devel] [PATCH v2 00/15] [uq/master] Patch queue, part IV (MCE edition) Jan Kiszka
2011-02-18 10:11 ` [Qemu-devel] [PATCH v2 01/15] x86: Account for MCE in cpu_has_work Jan Kiszka
2011-02-18 10:11 ` [Qemu-devel] [PATCH v2 02/15] x86: Perform implicit mcg_status reset Jan Kiszka
2011-02-18 10:11 ` [Qemu-devel] [PATCH v2 03/15] x86: Small cleanups of MCE helpers Jan Kiszka
2011-02-18 10:11 ` [Qemu-devel] [PATCH v2 04/15] x86: Refine error reporting of MCE injection services Jan Kiszka
2011-02-18 10:11 ` [Qemu-devel] [PATCH v2 05/15] x86: Optionally avoid injecting AO MCEs while others are pending Jan Kiszka
2011-02-18 10:11 ` [Qemu-devel] [PATCH v2 06/15] Synchronize VCPU states before reset Jan Kiszka
2011-02-18 10:11 ` [Qemu-devel] [PATCH v2 07/15] kvm: x86: Move MCE functions together Jan Kiszka
2011-02-18 10:11 ` Jan Kiszka [this message]
2011-02-18 10:11 ` [Qemu-devel] [PATCH v2 09/15] kvm: x86: Inject pending MCE events on state writeback Jan Kiszka
2011-02-18 10:11 ` [Qemu-devel] [PATCH v2 10/15] x86: Run qemu_inject_x86_mce on target VCPU Jan Kiszka
2011-02-18 10:11 ` [Qemu-devel] [PATCH v2 11/15] kvm: x86: Consolidate TCG and KVM MCE injection code Jan Kiszka
2011-02-18 10:11 ` [Qemu-devel] [PATCH v2 12/15] kvm: x86: Clean up kvm_setup_mce Jan Kiszka
2011-02-18 10:11 ` [Qemu-devel] [PATCH v2 13/15] kvm: x86: Fail kvm_arch_init_vcpu if MCE initialization fails Jan Kiszka
2011-02-18 10:11 ` [Qemu-devel] [PATCH v2 14/15] Add qemu_ram_remap Jan Kiszka
2011-02-18 10:11 ` [Qemu-devel] [PATCH v2 15/15] KVM, MCE, unpoison memory address across reboot Jan Kiszka
2011-02-22 18:28 ` [Qemu-devel] Re: [PATCH v2 00/15] [uq/master] Patch queue, part IV (MCE edition) Marcelo Tosatti
2011-03-01 17:48 ` Marcelo Tosatti
2011-03-01 18:43 ` Jan Kiszka
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=7e2a86f38f508743ea7abb0c74cfe9301abb63f1.1298023878.git.jan.kiszka@siemens.com \
--to=jan.kiszka@siemens.com \
--cc=avi@redhat.com \
--cc=kvm@vger.kernel.org \
--cc=mtosatti@redhat.com \
--cc=qemu-devel@nongnu.org \
/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).