All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jan Kiszka <jan.kiszka@siemens.com>
To: Avi Kivity <avi@redhat.com>, Marcelo Tosatti <mtosatti@redhat.com>
Cc: kvm@vger.kernel.org
Subject: [PATCH 00/16] qemu-kvm: Cleanup and switch to upstream - Part II
Date: Fri, 13 May 2011 14:13:54 +0200	[thread overview]
Message-ID: <cover.1305288845.git.jan.kiszka@siemens.com> (raw)

The second round of merging qemu-kvm with upstream. This part stops
after switching to upstreams kvm_init implementation.

To achieve this, various small cleanups and refactorings are applied,
the irq0 override management is simplified and the kvm_context fields
are migrated into KVMState.

Please review/merge.

Jan Kiszka (16):
  qemu-kvm: Drop kvm_cpu_register_phys_memory_client wrapper
  qemu-kvm: Drop kvm_inject_interrupt
  Revert "qemu-kvm-x86: consider the irq0override flag in
    kvm_arch_init_irq_routing"
  qemu-kvm: Drop IRQ0 override test from ioapic_set_irq
  qemu-kvm: Clean up IRQ0 override configuration
  qemu-kvm: Refactor irqchip and routing initialization
  qemu-kvm: Fold kvm_get_gsi_count into kvm_create_irqchip
  qemu-kvm: Make some private functions static
  qemu-kvm: Implement kvm_has_pit_state2 in upstream style
  qemu-kvm: Fold kvm_set_irq_level into kvm_set_irq
  qemu-kvm: Remove kvm_context from public interfaces
  qemu-kvm: Fold kvm_set_boot_vcpu_id into kvm_set_boot_cpu_id
  qemu-kvm: Remove handle_io_window
  qemu-kvm: Merge kvm_context into KVMState
  qemu-kvm: Use KVM-optimized interrupt handler
  qemu-kvm: Use upstream kvm_init

 exec.c                 |    2 -
 hw/device-assignment.c |   21 ++-
 hw/i8254-kvm.c         |   12 +-
 hw/i8254.c             |    4 +-
 hw/i8259.c             |    4 +-
 hw/ioapic.c            |    7 +-
 hw/pc.c                |    2 +-
 hw/pcspk.c             |    4 +-
 kvm-all.c              |   48 ++++--
 kvm-stub.c             |   10 +
 kvm.h                  |   17 +-
 monitor.c              |    5 +-
 qemu-kvm-x86.c         |   51 +++---
 qemu-kvm.c             |  461 ++++++++++++++----------------------------------
 qemu-kvm.h             |  166 ++----------------
 sysemu.h               |    1 -
 target-i386/kvm.c      |    8 +-
 vl.c                   |    1 -
 18 files changed, 257 insertions(+), 567 deletions(-)


             reply	other threads:[~2011-05-13 12:14 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-05-13 12:13 Jan Kiszka [this message]
2011-05-13 12:13 ` [PATCH 01/16] qemu-kvm: Drop kvm_cpu_register_phys_memory_client wrapper Jan Kiszka
2011-05-13 12:13 ` [PATCH 02/16] qemu-kvm: Drop kvm_inject_interrupt Jan Kiszka
2011-05-13 12:13 ` [PATCH 03/16] Revert "qemu-kvm-x86: consider the irq0override flag in kvm_arch_init_irq_routing" Jan Kiszka
2011-05-16 10:24   ` Avi Kivity
2011-05-16 10:33     ` Avi Kivity
2011-05-13 12:13 ` [PATCH 04/16] qemu-kvm: Drop IRQ0 override test from ioapic_set_irq Jan Kiszka
2011-05-16 10:29   ` Avi Kivity
2011-05-13 12:13 ` [PATCH 05/16] qemu-kvm: Clean up IRQ0 override configuration Jan Kiszka
2011-05-13 12:14 ` [PATCH 06/16] qemu-kvm: Refactor irqchip and routing initialization Jan Kiszka
2011-05-13 12:14 ` [PATCH 07/16] qemu-kvm: Fold kvm_get_gsi_count into kvm_create_irqchip Jan Kiszka
2011-05-13 12:14 ` [PATCH 08/16] qemu-kvm: Make some private functions static Jan Kiszka
2011-05-13 12:14 ` [PATCH 09/16] qemu-kvm: Implement kvm_has_pit_state2 in upstream style Jan Kiszka
2011-05-13 12:14 ` [PATCH 10/16] qemu-kvm: Fold kvm_set_irq_level into kvm_set_irq Jan Kiszka
2011-05-13 12:14 ` [PATCH 11/16] qemu-kvm: Remove kvm_context from public interfaces Jan Kiszka
2011-05-13 12:14 ` [PATCH 12/16] qemu-kvm: Fold kvm_set_boot_vcpu_id into kvm_set_boot_cpu_id Jan Kiszka
2011-05-13 12:14 ` [PATCH 13/16] qemu-kvm: Remove handle_io_window Jan Kiszka
2011-05-13 12:14 ` [PATCH 14/16] qemu-kvm: Merge kvm_context into KVMState Jan Kiszka
2011-05-13 12:14 ` [PATCH 15/16] qemu-kvm: Use KVM-optimized interrupt handler Jan Kiszka
2011-05-13 12:14 ` [PATCH 16/16] qemu-kvm: Use upstream kvm_init Jan Kiszka
2011-05-16 10:37 ` [PATCH 00/16] qemu-kvm: Cleanup and switch to upstream - Part II Avi Kivity
2011-05-17 18:47 ` 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=cover.1305288845.git.jan.kiszka@siemens.com \
    --to=jan.kiszka@siemens.com \
    --cc=avi@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.