qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 00/10] [PULL] qemu-kvm.git uq/master queue
@ 2010-10-20 17:43 Marcelo Tosatti
  2010-10-20 17:43 ` [Qemu-devel] [PATCH 01/10] Set cpuid definition to 0 before initializing it Marcelo Tosatti
                   ` (12 more replies)
  0 siblings, 13 replies; 29+ messages in thread
From: Marcelo Tosatti @ 2010-10-20 17:43 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: Marcelo Tosatti, qemu-devel, kvm

The following changes since commit 38cc9b607f85017b095793cab6c129bc9844f441:

  issue snd_pcm_start() when capturing audio (2010-10-18 00:39:06 +0400)

are available in the git repository at:
  git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git uq/master

Huang Ying (1):
      Add RAM -> physical addr mapping in MCE simulation

Joerg Roedel (2):
      Set cpuid definition to 0 before initializing it
      Add svm cpuid features

Marcelo Tosatti (7):
      signalfd compatibility
      iothread: use signalfd
      kvm: x86: add mce support
      Export qemu_ram_addr_from_host
      MCE: Relay UCR MCE to guest
      Add savevm/loadvm support for MCE
      Fix memory leak in register save load due to xsave support

 Makefile.objs         |    1 +
 compatfd.c            |  117 ++++++++++++++++++
 compatfd.h            |   43 +++++++
 configure             |   18 +++
 cpu-common.h          |    3 +-
 cpus.c                |  156 ++++++++++++++++++++++--
 exec-all.h            |    2 +-
 exec.c                |   26 +++--
 kvm-all.c             |   18 +++
 kvm-stub.c            |    5 +
 kvm.h                 |    9 ++
 target-i386/cpu.h     |   32 +++++-
 target-i386/cpuid.c   |   79 ++++++++++---
 target-i386/helper.c  |    6 +
 target-i386/kvm.c     |  311 ++++++++++++++++++++++++++++++++++++++++++++++++-
 target-i386/kvm_x86.h |   22 ++++
 16 files changed, 801 insertions(+), 47 deletions(-)
 create mode 100644 compatfd.c
 create mode 100644 compatfd.h
 create mode 100644 target-i386/kvm_x86.h

^ permalink raw reply	[flat|nested] 29+ messages in thread
* [Qemu-devel] [PATCH 00/10] [PULL] qemu-kvm.git uq/master queue
@ 2010-10-19 10:40 Marcelo Tosatti
  2010-10-19 13:40 ` Anthony Liguori
  0 siblings, 1 reply; 29+ messages in thread
From: Marcelo Tosatti @ 2010-10-19 10:40 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: Marcelo Tosatti, qemu-devel, kvm

The following changes since commit 38cc9b607f85017b095793cab6c129bc9844f441:

  issue snd_pcm_start() when capturing audio (2010-10-18 00:39:06 +0400)

are available in the git repository at:
  git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git uq/master

Huang Ying (1):
      Add RAM -> physical addr mapping in MCE simulation

Joerg Roedel (2):
      Set cpuid definition to 0 before initializing it
      Add svm cpuid features

Marcelo Tosatti (7):
      signalfd compatibility
      iothread: use signalfd
      Expose thread_id in info cpus
      kvm: x86: add mce support
      Export qemu_ram_addr_from_host
      MCE: Relay UCR MCE to guest
      Add savevm/loadvm support for MCE

 Makefile.objs         |    1 +
 compatfd.c            |  117 +++++++++++++++++++
 compatfd.h            |   43 +++++++
 configure             |   18 +++
 cpu-common.h          |    3 +-
 cpu-defs.h            |    1 +
 cpus.c                |  161 ++++++++++++++++++++++++--
 exec-all.h            |    2 +-
 exec.c                |   27 +++--
 kvm-all.c             |   18 +++
 kvm-stub.c            |    5 +
 kvm.h                 |    6 +
 monitor.c             |    4 +
 osdep.c               |   15 +++
 osdep.h               |    1 +
 target-i386/cpu.h     |   32 +++++-
 target-i386/cpuid.c   |   79 ++++++++++---
 target-i386/helper.c  |    6 +
 target-i386/kvm.c     |  300 ++++++++++++++++++++++++++++++++++++++++++++++++-
 target-i386/kvm_x86.h |   22 ++++
 20 files changed, 817 insertions(+), 44 deletions(-)
 create mode 100644 compatfd.c
 create mode 100644 compatfd.h
 create mode 100644 target-i386/kvm_x86.h

^ permalink raw reply	[flat|nested] 29+ messages in thread
* [Qemu-devel] [PATCH 00/10] [PULL] qemu-kvm.git uq/master queue
@ 2010-04-26 17:58 Marcelo Tosatti
  0 siblings, 0 replies; 29+ messages in thread
From: Marcelo Tosatti @ 2010-04-26 17:58 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: Marcelo Tosatti, qemu-devel, kvm

The following changes since commit a303f9e37b87ced34e966dc2c0b7f86bc5e74035:
  Blue Swirl (1):
        sh4: remove dead assignments, spotted by clang analyzer

are available in the git repository at:

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

Jan Kiszka (1):
      KVM: x86: Add debug register saving and restoring

Marcelo Tosatti (8):
      target-i386: print EFER in cpu_dump_state
      kvm: handle internal error
      kvm_init_vcpu requires global lock held
      kvm: remove explicit kvm_arch_reset_vcpu from kvm_init_vcpu
      vga: fix typo in length passed to kvm_log_stop
      introduce leul_to_cpu
      kvm: port qemu-kvm's bitmap scanning
      introduce qemu_ram_map

Sheng Yang (1):
      kvm: allow qemu to set EPT identity mapping address

 bswap.h              |    2 +
 cpu-common.h         |    1 +
 cpus.c               |    2 +-
 exec.c               |   28 ++++++++++++++
 hw/vga.c             |    4 +-
 kvm-all.c            |   96 +++++++++++++++++++++++++++++++++++++++++---------
 kvm.h                |    1 +
 target-i386/helper.c |    1 +
 target-i386/kvm.c    |   81 +++++++++++++++++++++++++++++++++++++++++-
 9 files changed, 195 insertions(+), 21 deletions(-)

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

end of thread, other threads:[~2010-10-21  7:41 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-20 17:43 [Qemu-devel] [PATCH 00/10] [PULL] qemu-kvm.git uq/master queue Marcelo Tosatti
2010-10-20 17:43 ` [Qemu-devel] [PATCH 01/10] Set cpuid definition to 0 before initializing it Marcelo Tosatti
2010-10-20 17:43 ` [Qemu-devel] [PATCH 02/10] Add svm cpuid features Marcelo Tosatti
2010-10-20 17:43 ` [Qemu-devel] [PATCH 03/10] signalfd compatibility Marcelo Tosatti
2010-10-20 17:43 ` [Qemu-devel] [PATCH 04/10] iothread: use signalfd Marcelo Tosatti
2010-10-20 17:43 ` [Qemu-devel] [PATCH 05/10] kvm: x86: add mce support Marcelo Tosatti
2010-10-20 19:58   ` [Qemu-devel] " Anthony Liguori
2010-10-20 17:43 ` [Qemu-devel] [PATCH 06/10] Export qemu_ram_addr_from_host Marcelo Tosatti
2010-10-20 17:43 ` [Qemu-devel] [PATCH 07/10] Add RAM -> physical addr mapping in MCE simulation Marcelo Tosatti
2010-10-20 19:56   ` [Qemu-devel] " Anthony Liguori
2010-10-20 17:43 ` [Qemu-devel] [PATCH 08/10] MCE: Relay UCR MCE to guest Marcelo Tosatti
2010-10-20 19:51   ` [Qemu-devel] " Anthony Liguori
2010-10-20 20:59     ` Anthony Liguori
2010-10-20 21:33       ` Marcelo Tosatti
2010-10-20 21:28     ` Marcelo Tosatti
2010-10-20 21:56     ` Paolo Bonzini
2010-10-20 22:03       ` Anthony Liguori
2010-10-21  7:41         ` Paolo Bonzini
2010-10-20 17:43 ` [Qemu-devel] [PATCH 09/10] Add savevm/loadvm support for MCE Marcelo Tosatti
2010-10-20 19:54   ` [Qemu-devel] " Anthony Liguori
2010-10-20 17:43 ` [Qemu-devel] [PATCH 10/10] Fix memory leak in register save load due to xsave support Marcelo Tosatti
2010-10-20 19:01 ` [Qemu-devel] Re: [PATCH 00/10] [PULL] qemu-kvm.git uq/master queue Anthony Liguori
2010-10-20 19:05   ` Marcelo Tosatti
2010-10-20 19:15     ` Anthony Liguori
2010-10-20 19:52 ` Anthony Liguori
2010-10-20 21:59 ` Anthony Liguori
  -- strict thread matches above, loose matches on Subject: below --
2010-10-19 10:40 [Qemu-devel] " Marcelo Tosatti
2010-10-19 13:40 ` Anthony Liguori
2010-04-26 17:58 Marcelo Tosatti

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