qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL] KVM updates
@ 2012-09-10 15:25 Avi Kivity
  2012-09-10 15:32 ` Jan Kiszka
  2012-09-10 23:03 ` Anthony Liguori
  0 siblings, 2 replies; 15+ messages in thread
From: Avi Kivity @ 2012-09-10 15:25 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: Jan Kiszka, Marcelo Tosatti, qemu-devel, KVM list

Please pull from:

  git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git uq/master

to merge some kvm updates, most notably a port of qemu-kvm's pre-vfio device
assignment.  With this there are no significant changes left between qemu and
qemu-kvm (though some work remains).

----------------------------------------------------------------
Christian Borntraeger (1):
      qemu: Use valgrind annotations to mark kvm guest memory as defined

Jan Kiszka (5):
      kvm: Clean up irqfd API
      kvm: Introduce kvm_irqchip_update_msi_route
      kvm: Introduce kvm_has_intx_set_mask
      kvm: i386: Add services required for PCI device assignment
      kvm: i386: Add classic PCI device assignment

 configure              |    3 +-
 hw/kvm/Makefile.objs   |    2 +-
 hw/kvm/pci-assign.c    | 1915 ++++++++++++++++++++++++++++++++++++++++++++++++
 hw/qdev-monitor.c      |    1 +
 hw/virtio-pci.c        |    4 +-
 kvm-all.c              |   75 +-
 kvm-stub.c             |   14 +-
 kvm.h                  |    8 +-
 target-i386/kvm.c      |  141 ++++
 target-i386/kvm_i386.h |   22 +
 10 files changed, 2151 insertions(+), 34 deletions(-)
 create mode 100644 hw/kvm/pci-assign.c

-- 
error compiling committee.c: too many arguments to function

^ permalink raw reply	[flat|nested] 15+ messages in thread
* [Qemu-devel] [PULL] kvm updates
@ 2012-08-12 12:58 Avi Kivity
  2012-08-13 21:13 ` Anthony Liguori
  0 siblings, 1 reply; 15+ messages in thread
From: Avi Kivity @ 2012-08-12 12:58 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: qemu-devel

Please pull from:

  git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git uq/master

This is mostly Peter's kvm_irqchip_in_kernel() decoupling work.

----------------------------------------------------------------
Dunrong Huang (1):
      kvm: Check if smp_cpus exceeds max cpus supported by kvm

Peter Maydell (8):
      configure: Don't implicitly hardcode list of KVM architectures
      kvm: Decouple 'async interrupt delivery' from 'kernel irqchip'
      kvm: Rename kvm_irqchip_set_irq() to kvm_set_irq()
      kvm: Move kvm_allows_irq0_override() to target-i386, fix return type
      kvm: Decouple 'irqfds usable' from 'kernel irqchip'
      kvm: Decouple 'MSI routing via irqfds' from 'kernel irqchip'
      kvm: Decouple 'GSI routing' from 'kernel irqchip'
      kvm: Add documentation comment for kvm_irqchip_in_kernel()

 configure                 | 14 +++++++++++---
 cpus.c                    |  3 ++-
 hw/kvm/i8259.c            |  2 +-
 hw/kvm/ioapic.c           |  2 +-
 hw/pc.c                   |  1 +
 hw/virtio-pci.c           |  4 ++--
 kvm-all.c                 | 54 +++++++++++++++++++++++++++++++++++++++++++-----------
 kvm-stub.c                |  9 ++++-----
 kvm.h                     | 60 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++---
 target-i386/Makefile.objs |  1 +
 target-i386/kvm-stub.c    | 18 ++++++++++++++++++
 target-i386/kvm.c         | 13 +++++++++++++
 target-i386/kvm_i386.h    | 16 ++++++++++++++++
 13 files changed, 170 insertions(+), 27 deletions(-)
 create mode 100644 target-i386/kvm-stub.c
 create mode 100644 target-i386/kvm_i386.h

-- 
error compiling committee.c: too many arguments to function

^ permalink raw reply	[flat|nested] 15+ messages in thread
* [Qemu-devel] [PULL] kvm updates
@ 2012-06-11 13:38 Avi Kivity
  2012-06-11 18:28 ` Anthony Liguori
  0 siblings, 1 reply; 15+ messages in thread
From: Avi Kivity @ 2012-06-11 13:38 UTC (permalink / raw)
  To: Anthony Liguori, qemu-devel; +Cc: Jan Kiszka

Please pull from:

  git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git uq/master

to fix a bug in kvm PIT time synchronization and a bug in kvm apic reset.

----------------------------------------------------------------
Jan Kiszka (1):
      kvm: i8254: Fix conversion of in-kernel to userspace state

Jim Meyering (1):
      kvm/apic: correct short memset

 hw/kvm/apic.c  |    2 +-
 hw/kvm/i8254.c |   57
++++++++++++++++++++++++++++++++++++++++++++++++++++-----
-- 
error compiling committee.c: too many arguments to function

^ permalink raw reply	[flat|nested] 15+ messages in thread
* [Qemu-devel] [PULL] kvm updates
@ 2012-03-01 12:47 Avi Kivity
  2012-03-01 23:45 ` Andreas Färber
  2012-03-02 13:22 ` Anthony Liguori
  0 siblings, 2 replies; 15+ messages in thread
From: Avi Kivity @ 2012-03-01 12:47 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: qemu-devel, KVM list

This batch of updates is mostly Jan's rework of qemu-kvm's TPR
optimization for 32-bit Windows, making Windows XP much faster with kvm
enabled on older Intel and any AMD hardware.  Any similarities to the
original hack are purely coincidental.

Please pull from:

  git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git uq/master

----------------------------------------------------------------
Avi Kivity (1):
      pc-bios: update kvmvapic.bin

Gleb Natapov (1):
      kvm: Synchronize cpu state in kvm_arch_stop_on_emulation_error()

Jan Kiszka (10):
      kvm: Set cpu_single_env only once
      Remove useless casts from cpu iterators
      Process pending work while waiting for initial kick-off in TCG mode
      Allow to use pause_all_vcpus from VCPU context
      target-i386: Add infrastructure for reporting TPR MMIO accesses
      kvmvapic: Add option ROM
      kvmvapic: Introduce TPR access optimization for Windows guests
      kvmvapic: Simplify mp/up_set_tpr
      optionsrom: Reserve space for checksum
      kvmvapic: Use optionrom helpers

 .gitignore                    |    1 +
 Makefile                      |    2 +-
 Makefile.target               |    3 +-
 cpu-all.h                     |    3 +-
 cpus.c                        |   26 ++-
 hw/apic.c                     |  126 ++++++-
 hw/apic.h                     |    2 +
 hw/apic_common.c              |   69 ++++-
 hw/apic_internal.h            |   27 ++
 hw/kvm/apic.c                 |   32 ++
 hw/kvmvapic.c                 |  805
+++++++++++++++++++++++++++++++++++++++++
 hw/mc146818rtc.c              |    5 +-
 kvm-all.c                     |    5 -
 pc-bios/kvmvapic.bin          |  Bin 0 -> 9216 bytes
 pc-bios/optionrom/Makefile    |    2 +-
 pc-bios/optionrom/kvmvapic.S  |  335 +++++++++++++++++
 pc-bios/optionrom/optionrom.h |    3 +-
 target-i386/cpu.h             |   10 +
 target-i386/helper.c          |   16 +
 target-i386/kvm.c             |   26 ++-
 20 files changed, 1468 insertions(+), 30 deletions(-)
 create mode 100644 hw/kvmvapic.c
 create mode 100755 pc-bios/kvmvapic.bin
 create mode 100644 pc-bios/optionrom/kvmvapic.S

-- 
error compiling committee.c: too many arguments to function

^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2012-09-11  9:31 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-10 15:25 [Qemu-devel] [PULL] KVM updates Avi Kivity
2012-09-10 15:32 ` Jan Kiszka
2012-09-10 15:49   ` Marcelo Tosatti
2012-09-10 15:54     ` Avi Kivity
2012-09-10 23:03 ` Anthony Liguori
2012-09-11  8:50   ` Avi Kivity
2012-09-11  9:30     ` Jan Kiszka
  -- strict thread matches above, loose matches on Subject: below --
2012-08-12 12:58 [Qemu-devel] [PULL] kvm updates Avi Kivity
2012-08-13 21:13 ` Anthony Liguori
2012-06-11 13:38 Avi Kivity
2012-06-11 18:28 ` Anthony Liguori
2012-03-01 12:47 Avi Kivity
2012-03-01 23:45 ` Andreas Färber
2012-03-04 10:08   ` Avi Kivity
2012-03-02 13:22 ` Anthony Liguori

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).