Re: [kvm-devel] [PATCH][RFC] SVM: Add Support for Nested Paging in AMD Fam16 CPUs

2008-02-10 Thread Avi Kivity
Joerg Roedel wrote:
 On Sun, Jan 27, 2008 at 10:57:07AM +0200, Avi Kivity wrote:
   
 Very nice patchset; small, simple, and clean.  Apart from the comments
 I already posted, I'd like to avoid the term 'hap': I find it
 non-descriptive, and it reminds me of another hypervisor.  I suggest
 'tlp' for two-level paging.
 

 I renamed HAP to TDP. This stands for Two-Dimensional Paging and is the
 term which descibes best what happens in my opinion.

   

Yes, it actually describes what is going on in there.

-- 
error compiling committee.c: too many arguments to function


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
kvm-devel mailing list
kvm-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/kvm-devel


Re: [kvm-devel] [PATCH][RFC] SVM: Add Support for Nested Paging in AMD Fam16 CPUs

2008-02-07 Thread Joerg Roedel
On Sun, Jan 27, 2008 at 10:57:07AM +0200, Avi Kivity wrote:
 Very nice patchset; small, simple, and clean.  Apart from the comments
 I already posted, I'd like to avoid the term 'hap': I find it
 non-descriptive, and it reminds me of another hypervisor.  I suggest
 'tlp' for two-level paging.

I renamed HAP to TDP. This stands for Two-Dimensional Paging and is the
term which descibes best what happens in my opinion.

Joerg

-- 
   |   AMD Saxony Limited Liability Company  Co. KG
 Operating | Wilschdorfer Landstr. 101, 01109 Dresden, Germany
 System|  Register Court Dresden: HRA 4896
 Research  |  General Partner authorized to represent:
 Center| AMD Saxony LLC (Wilmington, Delaware, US)
   | General Manager of AMD Saxony LLC: Dr. Hans-R. Deppe, Thomas McCoy



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
kvm-devel mailing list
kvm-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/kvm-devel


Re: [kvm-devel] [PATCH][RFC] SVM: Add Support for Nested Paging in AMD Fam16 CPUs

2008-01-28 Thread Avi Kivity
Jeremy Fitzhardinge wrote:
 Avi Kivity wrote:
   
  I find it non-descriptive, and it reminds me of another hypervisor.  
 I suggest 'tlp' for two-level paging.
 

 That has its own ambiguity; without other context it reads like 
 two-level pagetable.  Anyway, using the same term for the same thing 
 is not a bad idea.

   

What annoys me about hap and hvm is that it comes from a 
paravirtualization viewpoint, where pv is the default model, and 
hardware extensions are an optional addition.  With kvm it's the other 
way round: the base model is full virtualization, and paravirtualization 
is an optional add-on.  I'd rather call traditional shadow paging 
software-assisted paging.


-- 
error compiling committee.c: too many arguments to function


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
kvm-devel mailing list
kvm-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/kvm-devel


Re: [kvm-devel] [PATCH][RFC] SVM: Add Support for Nested Paging in AMD Fam16 CPUs

2008-01-27 Thread Avi Kivity
Joerg Roedel wrote:
 Hi,   


 here is the first release of patches for KVM to support the Nested Paging 
 (NPT)
 feature of AMD QuadCore CPUs for comments and public testing. This feature
 improves the guest performance significantly. I measured an improvement of
 around 17% using kernbench in my first tests.

 This patch series is basically tested with Linux guests (32 bit legacy
 paging, 32 bit PAE paging and 64 bit Long Mode). Also tested with Windows 
 Vista
 32 bit and 64 bit. All these guests ran successfully with these patches. The
 patch series only enables NPT for 64 bit Linux hosts at the moment.
   


Very nice patchset; small, simple, and clean.  Apart from the comments I 
already posted, I'd like to avoid the term 'hap': I find it 
non-descriptive, and it reminds me of another hypervisor.  I suggest 
'tlp' for two-level paging.

Since it re-uses non-npt real-mode paging, live migration and swapping 
will likely work without further changes.

-- 
error compiling committee.c: too many arguments to function


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
kvm-devel mailing list
kvm-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/kvm-devel


Re: [kvm-devel] [PATCH][RFC] SVM: Add Support for Nested Paging in AMD Fam16 CPUs

2008-01-27 Thread Joerg Roedel
On Sun, Jan 27, 2008 at 10:57:07AM +0200, Avi Kivity wrote:
 Joerg Roedel wrote:
  Hi, 
   
 
  here is the first release of patches for KVM to support the Nested Paging 
  (NPT)
  feature of AMD QuadCore CPUs for comments and public testing. This feature
  improves the guest performance significantly. I measured an improvement of
  around 17% using kernbench in my first tests.
 
  This patch series is basically tested with Linux guests (32 bit legacy
  paging, 32 bit PAE paging and 64 bit Long Mode). Also tested with Windows 
  Vista
  32 bit and 64 bit. All these guests ran successfully with these patches. The
  patch series only enables NPT for 64 bit Linux hosts at the moment.

 
 
 Very nice patchset; small, simple, and clean.  Apart from the comments I 
 already posted, I'd like to avoid the term 'hap': I find it 
 non-descriptive, and it reminds me of another hypervisor.  I suggest 
 'tlp' for two-level paging.
 
 Since it re-uses non-npt real-mode paging, live migration and swapping 
 will likely work without further changes.

Yes, I think so too. Thank you for your comments. I will work them into
the patchset and run some larger tests on it next week (test with many
kinds of guests and some stress testing) to be sure that there are no
regressions. I would like to enable NPT per default when the patchset
is merged. I will post a new version of the patchset maybe on Thursday
or Friday.

Joerg

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
kvm-devel mailing list
kvm-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/kvm-devel


Re: [kvm-devel] [PATCH][RFC] SVM: Add Support for Nested Paging in AMD Fam16 CPUs

2008-01-27 Thread Jeremy Fitzhardinge
Avi Kivity wrote:
  I find it non-descriptive, and it reminds me of another hypervisor.  
 I suggest 'tlp' for two-level paging.

That has its own ambiguity; without other context it reads like 
two-level pagetable.  Anyway, using the same term for the same thing 
is not a bad idea.

J

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
kvm-devel mailing list
kvm-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/kvm-devel


Re: [kvm-devel] [PATCH][RFC] SVM: Add Support for Nested Paging in AMD Fam16 CPUs

2008-01-25 Thread Nakajima, Jun
Joerg Roedel wrote:
 Hi,
 
 here is the first release of patches for KVM to support the Nested
Paging
 (NPT) feature of AMD QuadCore CPUs for comments and public testing.
This
 feature improves the guest performance significantly. I measured an
 improvement of around 17% using kernbench in my first tests.
 
 This patch series is basically tested with Linux guests (32 bit legacy
 paging, 32 bit PAE paging and 64 bit Long Mode). Also tested with
Windows
 Vista 32 bit and 64 bit. All these guests ran successfully with these
 patches. The patch series only enables NPT for 64 bit Linux hosts at
the
 moment. 
 
 Please give these patches a good and deep testing. I hope we have this
 patchset ready for merging soon.

Good. We also ported the EPT patch for Xen to KVM, which we submitted
last year. We've been cleaning up the patch with Avi. We are working on
live migration support now, and we'll submit the patch once it's done.
So please stay tuned.

 
 Joerg
 

Jun
---
Intel Open Source Technology Center

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
kvm-devel mailing list
kvm-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/kvm-devel


Re: [kvm-devel] [PATCH][RFC] SVM: Add Support for Nested Paging in AMD Fam16 CPUs

2008-01-25 Thread Anthony Liguori
Joerg Roedel wrote:
 Hi,   


 here is the first release of patches for KVM to support the Nested Paging 
 (NPT)
 feature of AMD QuadCore CPUs for comments and public testing. This feature
 improves the guest performance significantly. I measured an improvement of
 around 17% using kernbench in my first tests.

 This patch series is basically tested with Linux guests (32 bit legacy
 paging, 32 bit PAE paging and 64 bit Long Mode). Also tested with Windows 
 Vista
 32 bit and 64 bit. All these guests ran successfully with these patches. The
 patch series only enables NPT for 64 bit Linux hosts at the moment.

 Please give these patches a good and deep testing. I hope we have this 
 patchset
 ready for merging soon.
   

A quick sniff test and things look pretty good.  I was able to start 
running the install CDs for 32-bit and 64-bit Ubuntu, 32-bit OpenSuSE, 
64-bit Fedora, and 32-bit Win2k8.  I'll do a more thorough run of 
kvm-test on Monday when I have a better connection to my machine.

Nice work!

Regards,

Anthony Liguori

 Joerg

 Here is the diffstat:

  arch/x86/kvm/mmu.c |   81 +++---
  arch/x86/kvm/mmu.h |6 +++
  arch/x86/kvm/svm.c |   94 +--
  arch/x86/kvm/vmx.c |7 +++
  arch/x86/kvm/x86.c |1 +
  include/asm-x86/kvm_host.h |4 ++
  6 files changed, 182 insertions(+), 11 deletions(-)





 -
 This SF.net email is sponsored by: Microsoft
 Defy all challenges. Microsoft(R) Visual Studio 2008.
 http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
 ___
 kvm-devel mailing list
 kvm-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/kvm-devel
   


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
kvm-devel mailing list
kvm-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/kvm-devel


Re: [kvm-devel] [PATCH][RFC] SVM: Add Support for Nested Paging in AMD Fam16 CPUs

2008-01-25 Thread Joerg Roedel
On Fri, Jan 25, 2008 at 03:32:57PM -0600, Anthony Liguori wrote:

 A quick sniff test and things look pretty good.  I was able to start 
 running the install CDs for 32-bit and 64-bit Ubuntu, 32-bit OpenSuSE, 
 64-bit Fedora, and 32-bit Win2k8.  I'll do a more thorough run of 
 kvm-test on Monday when I have a better connection to my machine.

Great. We will do more tests too next week. Life migration is completly
untested for now. SMP guests worked also fine with this patches.

 Nice work!

Thanks :-)

Joerg

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
kvm-devel mailing list
kvm-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/kvm-devel