mbox

[GIT,PULL] KVM/ARM Changes for 3.10

Message ID CAEDV+gKXcCb11p5YCQRbQ1OwGefxYUr0sh8f4AOfxQSPPo2LMQ@mail.gmail.com
State New
Headers show

Pull-request

git://github.com/columbia/linux-kvm-arm.git kvm-arm-for-3.10

Message

Christoffer Dall April 29, 2013, 5:29 a.m. UTC
Hi Marcelo and Gleb,

These are the changes for KVM/ARM for 3.10.

The patches depend on the cleanup branch, which you've already merged.

Main thing is the reworking of Hyp idmaps, which is now handled by KVM
instead of arm/mm and includes several nasty bug fixes from Marc in
the progress.

Thanks!

The following changes since commit 5a2892ce72e010e3cb96b438d7cdddce0c88e0e6:

  KVM: nVMX: Skip PF interception check when queuing during nested run
(2013-04-28 13:34:39 +0300)

are available in the git repository at:

  git://github.com/columbia/linux-kvm-arm.git kvm-arm-for-3.10

for you to fetch changes up to d4e071ce6acf8d5eddb7615a953193a8b0ad7c38:

  ARM: KVM: iterate over all CPUs for CPU compatibility check
(2013-04-28 22:23:23 -0700)

----------------------------------------------------------------
Andre Przywara (1):
      ARM: KVM: iterate over all CPUs for CPU compatibility check

Arnd Bergmann (1):
      ARM: KVM: define KVM_ARM_MAX_VCPUS unconditionally

Christoffer Dall (2):
      KVM: ARM: Fix API documentation for ONE_REG encoding
      KVM: ARM: Fix spelling in error message

Marc Zyngier (10):
      ARM: KVM: add support for minimal host vs guest profiling
      ARM: KVM: simplify HYP mapping population
      ARM: KVM: fix HYP mapping limitations around zero
      ARM: KVM: move to a KVM provided HYP idmap
      ARM: KVM: enforce maximum size for identity mapped code
      ARM: KVM: rework HYP page table freeing
      ARM: KVM: switch to a dual-step HYP init code
      ARM: KVM: perform HYP initilization for hotplugged CPUs
      ARM: KVM: add architecture specific hook for capabilities
      ARM: KVM: promote vfp_host pointer to generic host cpu context

Mark Rutland (1):
      ARM: KVM: arch_timer: use symbolic constants

 Documentation/virtual/kvm/api.txt |   12 +-
 arch/arm/include/asm/idmap.h      |    1 -
 arch/arm/include/asm/kvm_host.h   |   47 ++--
 arch/arm/include/asm/kvm_mmu.h    |   28 ++-
 arch/arm/kernel/asm-offsets.c     |    2 +-
 arch/arm/kernel/vmlinux.lds.S     |    7 +-
 arch/arm/kvm/Kconfig              |    6 +-
 arch/arm/kvm/Makefile             |    2 +-
 arch/arm/kvm/arch_timer.c         |    7 +-
 arch/arm/kvm/arm.c                |  111 +++++----
 arch/arm/kvm/handle_exit.c        |    2 +-
 arch/arm/kvm/init.S               |   78 +++++--
 arch/arm/kvm/mmu.c                |  455 +++++++++++++++++++++----------------
 arch/arm/kvm/perf.c               |   68 ++++++
 arch/arm/mm/idmap.c               |   32 +--
 15 files changed, 532 insertions(+), 326 deletions(-)
 create mode 100644 arch/arm/kvm/perf.c

Comments

Marcelo Tosatti April 30, 2013, 2:11 a.m. UTC | #1
On Sun, Apr 28, 2013 at 10:29:07PM -0700, Christoffer Dall wrote:
> Hi Marcelo and Gleb,
> 
> These are the changes for KVM/ARM for 3.10.
> 
> The patches depend on the cleanup branch, which you've already merged.
> 
> Main thing is the reworking of Hyp idmaps, which is now handled by KVM
> instead of arm/mm and includes several nasty bug fixes from Marc in
> the progress.
> 
> Thanks!
> 
> The following changes since commit 5a2892ce72e010e3cb96b438d7cdddce0c88e0e6:
> 
>   KVM: nVMX: Skip PF interception check when queuing during nested run
> (2013-04-28 13:34:39 +0300)
> 
> are available in the git repository at:
> 
>   git://github.com/columbia/linux-kvm-arm.git kvm-arm-for-3.10
> 
> for you to fetch changes up to d4e071ce6acf8d5eddb7615a953193a8b0ad7c38:
> 
>   ARM: KVM: iterate over all CPUs for CPU compatibility check
> (2013-04-28 22:23:23 -0700)

Christoffer,

Please email the patches to kvm@vger.
Christoffer Dall April 30, 2013, 2:52 a.m. UTC | #2
On Mon, Apr 29, 2013 at 7:11 PM, Marcelo Tosatti <mtosatti@redhat.com> wrote:
> On Sun, Apr 28, 2013 at 10:29:07PM -0700, Christoffer Dall wrote:
>> Hi Marcelo and Gleb,
>>
>> These are the changes for KVM/ARM for 3.10.
>>
>> The patches depend on the cleanup branch, which you've already merged.
>>
>> Main thing is the reworking of Hyp idmaps, which is now handled by KVM
>> instead of arm/mm and includes several nasty bug fixes from Marc in
>> the progress.
>>
>> Thanks!
>>
>> The following changes since commit 5a2892ce72e010e3cb96b438d7cdddce0c88e0e6:
>>
>>   KVM: nVMX: Skip PF interception check when queuing during nested run
>> (2013-04-28 13:34:39 +0300)
>>
>> are available in the git repository at:
>>
>>   git://github.com/columbia/linux-kvm-arm.git kvm-arm-for-3.10
>>
>> for you to fetch changes up to d4e071ce6acf8d5eddb7615a953193a8b0ad7c38:
>>
>>   ARM: KVM: iterate over all CPUs for CPU compatibility check
>> (2013-04-28 22:23:23 -0700)
>
> Christoffer,
>
> Please email the patches to kvm@vger.
>
>

each of them were already cc'ed on the kvm mailing list when they were
reviewed I believe, but would you like to have them re-sent as they
are not in this pull request even if it means re-sending them?

-Christoffer
Marcelo Tosatti April 30, 2013, 10:29 a.m. UTC | #3
On Mon, Apr 29, 2013 at 07:52:41PM -0700, Christoffer Dall wrote:
> On Mon, Apr 29, 2013 at 7:11 PM, Marcelo Tosatti <mtosatti@redhat.com> wrote:
> > On Sun, Apr 28, 2013 at 10:29:07PM -0700, Christoffer Dall wrote:
> >> Hi Marcelo and Gleb,
> >>
> >> These are the changes for KVM/ARM for 3.10.
> >>
> >> The patches depend on the cleanup branch, which you've already merged.
> >>
> >> Main thing is the reworking of Hyp idmaps, which is now handled by KVM
> >> instead of arm/mm and includes several nasty bug fixes from Marc in
> >> the progress.
> >>
> >> Thanks!
> >>
> >> The following changes since commit 5a2892ce72e010e3cb96b438d7cdddce0c88e0e6:
> >>
> >>   KVM: nVMX: Skip PF interception check when queuing during nested run
> >> (2013-04-28 13:34:39 +0300)
> >>
> >> are available in the git repository at:
> >>
> >>   git://github.com/columbia/linux-kvm-arm.git kvm-arm-for-3.10
> >>
> >> for you to fetch changes up to d4e071ce6acf8d5eddb7615a953193a8b0ad7c38:
> >>
> >>   ARM: KVM: iterate over all CPUs for CPU compatibility check
> >> (2013-04-28 22:23:23 -0700)
> >
> > Christoffer,
> >
> > Please email the patches to kvm@vger.
> >
> >
> 
> each of them were already cc'ed on the kvm mailing list when they were
> reviewed I believe, but would you like to have them re-sent as they
> are not in this pull request even if it means re-sending them?
> 
> -Christoffer

Yes please, send the patches along with the pull request.