qemu-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-commits] [qemu/qemu] ee1e0f: util: align memory allocations to 2M


From: GitHub
Subject: [Qemu-commits] [qemu/qemu] ee1e0f: util: align memory allocations to 2M on AArch64
Date: Fri, 22 Apr 2016 05:00:08 -0700

  Branch: refs/heads/master
  Home:   https://github.com/qemu/qemu
  Commit: ee1e0f8e5d3682c561edcdceccff72b9d9b16d8b
      
https://github.com/qemu/qemu/commit/ee1e0f8e5d3682c561edcdceccff72b9d9b16d8b
  Author: Christoffer Dall <address@hidden>
  Date:   2016-04-22 (Fri, 22 Apr 2016)

  Changed paths:
    M util/oslib-posix.c

  Log Message:
  -----------
  util: align memory allocations to 2M on AArch64

For KVM to use Transparent Huge Pages (THP) we have to ensure that the
alignment of the userspace address of the KVM memory slot and the IPA
that the guest sees for a memory region have the same offset from the 2M
huge page size boundary.

One way to achieve this is to always align the IPA region at a 2M
boundary and ensure that the mmap alignment is also at 2M.

Unfortunately, we were only doing this for __arm__, not for __aarch64__,
so add this simple condition.

This fixes a performance regression using KVM/ARM on AArch64 platforms
that showed a performance penalty of more than 50%, introduced by the
following commit:

9fac18f (oslib: allocate PROT_NONE pages on top of RAM, 2015-09-10)

We were only lucky before the above commit, because we were allocating
large regions and naturally getting a 2M alignment on those allocations
then.

Cc: address@hidden
Reported-by: Shih-Wei Li <address@hidden>
Signed-off-by: Christoffer Dall <address@hidden>
Reviewed-by: Peter Maydell <address@hidden>
[PMM: wrapped long line]
Signed-off-by: Peter Maydell <address@hidden>



reply via email to

[Prev in Thread] Current Thread [Next in Thread]