From mboxrd@z Thu Jan 1 00:00:00 1970 From: Xiao Guangrong Subject: Re: Question about physical page allocation to the guest Date: Thu, 23 Oct 2014 00:39:56 +0800 Message-ID: <5447DDDC.5070106@gmail.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit To: Steven , KVM Return-path: Received: from mail-pa0-f46.google.com ([209.85.220.46]:45506 "EHLO mail-pa0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752463AbaJVQj5 (ORCPT ); Wed, 22 Oct 2014 12:39:57 -0400 Received: by mail-pa0-f46.google.com with SMTP id fa1so3986616pad.5 for ; Wed, 22 Oct 2014 09:39:56 -0700 (PDT) In-Reply-To: Sender: kvm-owner@vger.kernel.org List-ID: On 10/20/14 2:09 AM, Steven wrote: > Hi, Eric, > I am trying to understand how KVM allocates physical pages to the > guest and your slides clarify a lot of questions. > (https://events.linuxfoundation.org/slides/2011/linuxcon-japan/lcj2011_guangrong.pdf) > > However, I still have some difficulty in figuring out what happens in > the kvm code. > > The host kernel is 3.2.14 and EPT is disabled. > > In the guest VM, I run a micro-benchmark program that touches 1024 > pages (as an integer array). So in the guest VM, I can trace 1024 > mm_page_alloc event. However, in the hypervisor I can only trace about > 45 (sometimes < 45) kvm_page_fault events, which means that most page > faults in the guest are not exposed to the hypervisor. My questions > are > > (1) why such kind of page faults are not exposed to the hypervisor as > EPT is disabled? (My doubt is that it is related to non-presetn PTE as > you discussed in the slides. But could you give some more details?) Two cases, the one is the page you accessed have already mapped into the guest (the Present bit in the SPTE (shadow page table entry) is set). Another is that we can do page prefetch in KVM that can fill more nonpresent sptes in one vm-exit. > > (2) In such case, when the physical page are allocated to the VM to > backup the virtual pages? Could you give some hint about which piece > of KVM code calling the get get_user_pages()? In the case if the hva of the gpa you are accessing is not mapped in the hypervisor's address space. Please follow the code of try_async_pf > > Thanks in advance. Enjoy it. :)