xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00 of 20] NestedVMX support
@ 2011-06-02  8:57 Eddie Dong
  2011-06-02  8:57 ` [PATCH 01 of 20] pre-cleanup1: Extend nhvm_vmcx_guest_intercepts_trap to include errcode to Eddie Dong
                   ` (20 more replies)
  0 siblings, 21 replies; 74+ messages in thread
From: Eddie Dong @ 2011-06-02  8:57 UTC (permalink / raw)
  To: Tim.Deegan; +Cc: xen-devel


This patch series enable the nestedvmx support.

patch 1-2 is a pre-cleanup.
patch 3 is for nested vmx data structure
patch 4 for nestedhvm ops
patch 5, 7,8,9, 10, 11 is for VMX instruction emulation
patch 6 for virtual VMCS data structure and access APIs.
patch 12 for VMCS switching
Patch 13 for vmreseume/launch emulation
patch 14 for shadow control VMCS fields
patch 15 for n1/n2 guest VMCS switch 
patch 16 for interrupt/exceptions
patch 17 for nested vm exit
patch 18 for lazy FPU and patch 19 VMXE bits in CR4
patch 20 for MSR handling and capability


Thanks, Eddie

^ permalink raw reply	[flat|nested] 74+ messages in thread
* [PATCH 00 of 20] Rebased Nested VMX v2
@ 2011-06-09  8:25 Eddie Dong
  2011-06-09  8:25 ` [PATCH 20 of 20] n2 MSR handling and capability exposure Eddie Dong
  0 siblings, 1 reply; 74+ messages in thread
From: Eddie Dong @ 2011-06-09  8:25 UTC (permalink / raw)
  To: Tim.Deegan; +Cc: xen-devel

Tim/Keir:

This patch series enable the nestedvmx support with all fixes to comments.

patch 1-2 is a pre-cleanup.
patch 3 is for nested vmx data structure patch 4 for nestedhvm ops patch 5,
7,8,9, 10, 11 is for VMX instruction emulation patch 6 for virtual VMCS data
structure and access APIs.
patch 12 for VMCS switching
Patch 13 for vmreseume/launch emulation
patch 14 for shadow control VMCS fields
patch 15 for n1/n2 guest VMCS switch
patch 16 for interrupt/exceptions
patch 17 for nested vm exit
patch 18 for lazy FPU and patch 19 VMXE bits in CR4 patch 20 for MSR handling
and capability


Thanks, Eddie

^ permalink raw reply	[flat|nested] 74+ messages in thread

end of thread, other threads:[~2011-07-26 16:08 UTC | newest]

Thread overview: 74+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-02  8:57 [PATCH 00 of 20] NestedVMX support Eddie Dong
2011-06-02  8:57 ` [PATCH 01 of 20] pre-cleanup1: Extend nhvm_vmcx_guest_intercepts_trap to include errcode to Eddie Dong
2011-06-02  8:57 ` [PATCH 02 of 20] pre-cleanup2: Move IDT_VECTORING processing code out of intr_assist Eddie Dong
2011-06-02  8:57 ` [PATCH 03 of 20] Add data structure for nestedvmx Eddie Dong
2011-06-02  8:57 ` [PATCH 04 of 20] Add APIs for nestedhvm_ops Eddie Dong
2011-06-02  8:57 ` [PATCH 05 of 20] Emulation of guest VMXON/OFF instruction Eddie Dong
2011-06-02 14:36   ` Tim Deegan
2011-06-03  5:54     ` Dong, Eddie
2011-06-02  8:57 ` [PATCH 06 of 20] Define structure and access APIs for virtual VMCS Eddie Dong
2011-06-02  8:57 ` [PATCH 07 of 20] Emulation of guest vmptrld Eddie Dong
2011-06-02 14:45   ` Tim Deegan
2011-06-03  6:07     ` Dong, Eddie
2011-06-03  8:42       ` Tim Deegan
2011-06-07  1:48         ` Dong, Eddie
2011-06-02  8:57 ` [PATCH 08 of 20] Emulation of guest VMPTRST Eddie Dong
2011-06-02  8:57 ` [PATCH 09 of 20] Emulation of guest VMCLEAR Eddie Dong
2011-06-02  8:57 ` [PATCH 10 of 20] Emulation of guest VMWRITE Eddie Dong
2011-06-02  8:57 ` [PATCH 11 of 20] Emulation of guest VMREAD Eddie Dong
2011-06-02  8:57 ` [PATCH 12 of 20] Add APIs to switch n1/n2 VMCS Eddie Dong
2011-06-02 14:50   ` Tim Deegan
2011-06-03  7:30     ` Dong, Eddie
2011-06-02  8:57 ` [PATCH 13 of 20] Emulation of VMRESUME/VMLAUNCH Eddie Dong
2011-06-02  8:57 ` [PATCH 14 of 20] Extend VMCS control fields for n2 guest Eddie Dong
2011-06-02  8:57 ` [PATCH 15 of 20] Switch shadow/virtual VMCS between n1/n2 guests Eddie Dong
2011-06-02 14:56   ` Tim Deegan
2011-06-03  7:57     ` Dong, Eddie
2011-06-02 14:58   ` Tim Deegan
2011-06-02  8:57 ` [PATCH 16 of 20] interrupt/exception handling for n2 guest Eddie Dong
2011-06-02  8:57 ` [PATCH 17 of 20] VM exit handler of n2-guest Eddie Dong
2011-06-02 14:59   ` Tim Deegan
2011-06-03  8:06     ` Dong, Eddie
2011-06-03  8:43       ` Tim Deegan
2011-06-02  8:57 ` [PATCH 18 of 20] Lazy FPU for n2 guest Eddie Dong
2011-06-02  8:57 ` [PATCH 19 of 20] Add VMXE bits in virtual CR4 Eddie Dong
2011-06-02 15:01   ` Tim Deegan
2011-06-03  8:12     ` Dong, Eddie
2011-06-02  8:57 ` [PATCH 20 of 20] n2 MSR handling and capability exposure Eddie Dong
2011-06-02 15:07   ` Tim Deegan
2011-06-02 15:11     ` Tim Deegan
2011-06-02 19:20       ` Keir Fraser
2011-06-03  8:39       ` Dong, Eddie
2011-06-03  8:25     ` Dong, Eddie
2011-06-02 14:33 ` [PATCH 00 of 20] NestedVMX support Tim Deegan
2011-06-03  5:47   ` Dong, Eddie
  -- strict thread matches above, loose matches on Subject: below --
2011-06-09  8:25 [PATCH 00 of 20] Rebased Nested VMX v2 Eddie Dong
2011-06-09  8:25 ` [PATCH 20 of 20] n2 MSR handling and capability exposure Eddie Dong
2011-06-13  8:27   ` Tim Deegan
2011-06-14  2:29     ` Dong, Eddie
2011-06-15 12:45       ` Tim Deegan
2011-06-20  6:31         ` Jeroen Groenewegen van der Weyden
2011-06-30 14:14           ` Jeroen Groenewegen van der Weyden
2011-07-01  9:01             ` Tim Deegan
2011-07-01  9:54               ` Christoph Egger
2011-07-01 10:11                 ` Jeroen Groenewegen van der Weyden
2011-07-04  8:58                   ` Tim Deegan
2011-07-04  9:58                     ` Jeroen Groenewegen van der Weyden
2011-07-08  7:12                     ` Jeroen Groenewegen van der Weyden
2011-07-18 15:41                       ` Dong, Eddie
2011-07-19 13:59                         ` Jeroen Groenewegen van der Weyden
2011-07-20 13:44                           ` Dong, Eddie
2011-07-20 14:12                             ` Jeroen Groenewegen van der Weyden
2011-07-25 14:08                               ` Tim Deegan
2011-07-25 16:16                                 ` Tim Deegan
2011-07-26  7:15                                   ` Jeroen Groenewegen van der Weyden
2011-07-26 10:00                                     ` Tim Deegan
2011-07-26 10:11                                       ` Tim Deegan
2011-07-26 10:46                                         ` Jeroen Groenewegen van der Weyden
2011-07-26 11:42                                           ` Tim Deegan
2011-07-26 13:33                                             ` Jeroen Groenewegen van der Weyden
2011-07-26 14:21                                               ` Tim Deegan
2011-07-26 15:25                                                 ` Jeroen Groenewegen van der Weyden
2011-07-26 15:48                                                   ` Tim Deegan
2011-07-26 16:00                                                     ` Jeroen Groenewegen van der Weyden
2011-07-26 16:08                                                       ` Tim Deegan
2011-07-26 11:05                                       ` Jeroen Groenewegen van der Weyden

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).