All of lore.kernel.org
 help / color / mirror / Atom feed
From: Paul Mackerras <paulus@samba.org>
To: Paolo Bonzini <pbonzini@redhat.com>,
	kvm@vger.kernel.org, kvm-ppc@vger.kernel.org
Cc: Alexander Graf <agraf@suse.de>
Subject: [GIT PULL] PPC Book3S HV updates for 3.15
Date: Sat, 29 Mar 2014 10:31:15 +0000	[thread overview]
Message-ID: <20140329103115.GA5466@iris.ozlabs.ibm.com> (raw)

Paolo,

The following changes since commit e724f080f5dd03881bc6d378750c37f7374cae7e:

  KVM: PPC: Book3S HV: Fix register usage when loading/saving VRSAVE (2014-03-13 10:47:01 +0100)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc.git kvm-ppchv-next

for you to fetch changes up to 72cde5a88d37ba88ad1d47aecf957a9e528636d7:

  KVM: PPC: Book3S HV: Save/restore host PMU registers that are new in POWER8 (2014-03-29 19:58:52 +1100)

----------------------------------------------------------------
Anton Blanchard (1):
      KVM: PPC: Book3S HV: Fix KVM hang with CONFIG_KVM_XICS=n

Greg Kurz (1):
      KVM: PPC: Book3S HV: Fix incorrect userspace exit on ioeventfd write

Laurent Dufour (1):
      KVM: PPC: Book3S: Introduce hypervisor call H_GET_TCE

Michael Neuling (2):
      KVM: PPC: Book3S HV: Add transactional memory support
      KVM: PPC: Book3S HV: Add get/set_one_reg for new TM state

Paul Mackerras (5):
      KVM: PPC: Book3S: Trim top 4 bits of physical address in RTAS code
      KVM: PPC: Book3S HV: Return ENODEV error rather than EIO
      KVM: PPC: Book3S HV: Don't use kvm_memslots() in real mode
      KVM: PPC: Book3S HV: Fix decrementer timeouts with non-zero TB offset
      KVM: PPC: Book3S HV: Save/restore host PMU registers that are new in POWER8

 arch/powerpc/include/asm/kvm_book3s.h     |   5 +
 arch/powerpc/include/asm/kvm_book3s_64.h  |  12 ++
 arch/powerpc/include/asm/kvm_book3s_asm.h |   2 +-
 arch/powerpc/include/asm/kvm_ppc.h        |   2 +
 arch/powerpc/include/asm/reg.h            |   1 +
 arch/powerpc/include/asm/tm.h             |   4 +
 arch/powerpc/kvm/book3s_64_mmu_hv.c       |   9 +-
 arch/powerpc/kvm/book3s_64_vio_hv.c       |  28 +++++
 arch/powerpc/kvm/book3s_hv.c              | 159 ++++++++++++++++++++-----
 arch/powerpc/kvm/book3s_hv_interrupts.S   |  22 ++++
 arch/powerpc/kvm/book3s_hv_rm_mmu.c       |   6 +-
 arch/powerpc/kvm/book3s_hv_rmhandlers.S   | 187 +++++++++++++++++++++++++-----
 arch/powerpc/kvm/book3s_rtas.c            |   7 +-
 13 files changed, 377 insertions(+), 67 deletions(-)

Thanks,
Paul.

WARNING: multiple messages have this Message-ID (diff)
From: Paul Mackerras <paulus@samba.org>
To: Paolo Bonzini <pbonzini@redhat.com>,
	kvm@vger.kernel.org, kvm-ppc@vger.kernel.org
Cc: Alexander Graf <agraf@suse.de>
Subject: [GIT PULL] PPC Book3S HV updates for 3.15
Date: Sat, 29 Mar 2014 21:31:15 +1100	[thread overview]
Message-ID: <20140329103115.GA5466@iris.ozlabs.ibm.com> (raw)

Paolo,

The following changes since commit e724f080f5dd03881bc6d378750c37f7374cae7e:

  KVM: PPC: Book3S HV: Fix register usage when loading/saving VRSAVE (2014-03-13 10:47:01 +0100)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc.git kvm-ppchv-next

for you to fetch changes up to 72cde5a88d37ba88ad1d47aecf957a9e528636d7:

  KVM: PPC: Book3S HV: Save/restore host PMU registers that are new in POWER8 (2014-03-29 19:58:52 +1100)

----------------------------------------------------------------
Anton Blanchard (1):
      KVM: PPC: Book3S HV: Fix KVM hang with CONFIG_KVM_XICS=n

Greg Kurz (1):
      KVM: PPC: Book3S HV: Fix incorrect userspace exit on ioeventfd write

Laurent Dufour (1):
      KVM: PPC: Book3S: Introduce hypervisor call H_GET_TCE

Michael Neuling (2):
      KVM: PPC: Book3S HV: Add transactional memory support
      KVM: PPC: Book3S HV: Add get/set_one_reg for new TM state

Paul Mackerras (5):
      KVM: PPC: Book3S: Trim top 4 bits of physical address in RTAS code
      KVM: PPC: Book3S HV: Return ENODEV error rather than EIO
      KVM: PPC: Book3S HV: Don't use kvm_memslots() in real mode
      KVM: PPC: Book3S HV: Fix decrementer timeouts with non-zero TB offset
      KVM: PPC: Book3S HV: Save/restore host PMU registers that are new in POWER8

 arch/powerpc/include/asm/kvm_book3s.h     |   5 +
 arch/powerpc/include/asm/kvm_book3s_64.h  |  12 ++
 arch/powerpc/include/asm/kvm_book3s_asm.h |   2 +-
 arch/powerpc/include/asm/kvm_ppc.h        |   2 +
 arch/powerpc/include/asm/reg.h            |   1 +
 arch/powerpc/include/asm/tm.h             |   4 +
 arch/powerpc/kvm/book3s_64_mmu_hv.c       |   9 +-
 arch/powerpc/kvm/book3s_64_vio_hv.c       |  28 +++++
 arch/powerpc/kvm/book3s_hv.c              | 159 ++++++++++++++++++++-----
 arch/powerpc/kvm/book3s_hv_interrupts.S   |  22 ++++
 arch/powerpc/kvm/book3s_hv_rm_mmu.c       |   6 +-
 arch/powerpc/kvm/book3s_hv_rmhandlers.S   | 187 +++++++++++++++++++++++++-----
 arch/powerpc/kvm/book3s_rtas.c            |   7 +-
 13 files changed, 377 insertions(+), 67 deletions(-)

Thanks,
Paul.

             reply	other threads:[~2014-03-29 10:31 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-03-29 10:31 Paul Mackerras [this message]
2014-03-29 10:31 ` [GIT PULL] PPC Book3S HV updates for 3.15 Paul Mackerras
2014-03-29 15:26 ` Paolo Bonzini
2014-03-29 15:26   ` Paolo Bonzini

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=20140329103115.GA5466@iris.ozlabs.ibm.com \
    --to=paulus@samba.org \
    --cc=agraf@suse.de \
    --cc=kvm-ppc@vger.kernel.org \
    --cc=kvm@vger.kernel.org \
    --cc=pbonzini@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.