[COMMIT] [WIN-GUEST-DRIVERS] viostor driver.Add memory read barrier - synch with fix for Linux guests by Michael S. Tsirkinm...@redhat.com

2009-11-01 Thread Yan Vugenfirer
repository: C:/dev/kvm-guest-drivers-windows branch: master commit b68b7671ab3dd07f7f16e819db2d4060bbaeb901 Author: Yan Vugenfirer yvuge...@redhat.com Date: Sun Nov 1 15:23:20 2009 +0200 [WIN-GUEST-DRIVERS] viostor driver.Add memory read barrier - synch with fix for Linux guests by Michael

[COMMIT] [WIN-GUEST-DRIVERS] Fix the driver version report through OID. Will fix the warning during MS tests.

2009-11-01 Thread Yan Vugenfirer
repository: C:/dev/kvm-guest-drivers-windows branch: master commit e4808e72e5d12fa97b17dfd2d1e465a6c6331e8a Author: Yan Vugenfirer yvuge...@redhat.com Date: Sun Nov 1 15:59:18 2009 +0200 [WIN-GUEST-DRIVERS] Fix the driver version report through OID. Will fix the warning during MS tests.

[COMMIT master] vmxcap: support msrs with numerical subfields

2009-11-01 Thread Avi Kivity
From: Avi Kivity a...@redhat.com Signed-off-by: Avi Kivity a...@redhat.com diff --git a/kvm/scripts/vmxcap b/kvm/scripts/vmxcap index 50fb86e..93051c6 100755 --- a/kvm/scripts/vmxcap +++ b/kvm/scripts/vmxcap @@ -59,6 +59,29 @@ class Control(object): s = 'yes' print

[COMMIT master] Make vapic.S into optional rom

2009-11-01 Thread Avi Kivity
From: Gleb Natapov g...@redhat.com Signed-off-by: Gleb Natapov g...@redhat.com Signed-off-by: Avi Kivity a...@redhat.com diff --git a/Makefile b/Makefile index ea568f5..acd9108 100644 --- a/Makefile +++ b/Makefile @@ -259,6 +259,7 @@ pxe-ne2k_pci.bin pxe-rtl8139.bin pxe-pcnet.bin pxe-e1000.bin

[COMMIT master] vmxcap: improve bool formatting

2009-11-01 Thread Avi Kivity
From: Avi Kivity a...@redhat.com yes/no replaces True/False. Signed-off-by: Avi Kivity a...@redhat.com diff --git a/kvm/scripts/vmxcap b/kvm/scripts/vmxcap index ec909b3..b7f58ac 100755 --- a/kvm/scripts/vmxcap +++ b/kvm/scripts/vmxcap @@ -79,7 +79,8 @@ class Misc(object): fmt

[COMMIT master] Fix qemu-kvm sigsegv at exit

2009-11-01 Thread Avi Kivity
From: Marcelo Tosatti mtosa...@redhat.com Michael reported a qemu-kvm SIGSEGV at shutdown: Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 0x411d0940 (LWP 14446)] 0x0040afb4 in qemu_mod_timer (ts=0x19f0fd0, expire_time=62275467335) at

[COMMIT master] vmxcap: report MISC and EPT/VPID capabilities

2009-11-01 Thread Avi Kivity
From: Avi Kivity a...@redhat.com Signed-off-by: Avi Kivity a...@redhat.com diff --git a/kvm/scripts/vmxcap b/kvm/scripts/vmxcap index 93051c6..ec909b3 100755 --- a/kvm/scripts/vmxcap +++ b/kvm/scripts/vmxcap @@ -7,6 +7,7 @@ MSR_IA32_VMX_EXIT_CTLS = 0x483 MSR_IA32_VMX_ENTRY_CTLS = 0x484

[COMMIT master] make-release: Direct upload via scp

2009-11-01 Thread Avi Kivity
From: Jan Kiszka jan.kis...@siemens.com Signed-off-by: Jan Kiszka jan.kis...@siemens.com diff --git a/scripts/make-release b/scripts/make-release index f9205e3..5fabe1a 100755 --- a/scripts/make-release +++ b/scripts/make-release @@ -91,5 +91,5 @@ tar cjf $tarball -C $tmpdir $name rm -rf

[COMMIT master] KVM: VMX: Remove vmx-msr_offset_efer

2009-11-01 Thread Avi Kivity
From: Avi Kivity a...@redhat.com This variable is used to communicate between a caller and a callee; switch to a function argument instead. Signed-off-by: Avi Kivity a...@redhat.com diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c index 85f97d1..99c34f1 100644 --- a/arch/x86/kvm/vmx.c +++

[COMMIT master] KVM: VMX: move CR3/PDPTR update to vmx_set_cr3

2009-11-01 Thread Avi Kivity
From: Marcelo Tosatti mtosa...@redhat.com GUEST_CR3 is updated via kvm_set_cr3 whenever CR3 is modified from outside guest context. Similarly pdptrs are updated via load_pdptrs. Let kvm_set_cr3 perform the update, removing it from the vcpu_run fast path. Signed-off-by: Marcelo Tosatti

[COMMIT master] Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6

2009-11-01 Thread Avi Kivity
From: Avi Kivity a...@redhat.com Signed-off-by: Avi Kivity a...@redhat.com -- To unsubscribe from this list: send the line unsubscribe kvm-commits in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

[COMMIT master] KVM: VMX: Use proper slot index for kvm_set_shared_msr

2009-11-01 Thread Avi Kivity
From: Jan Kiszka jan.kis...@siemens.com We were missing one indirection here to translate from vmx-local to x86 slot indices, and this caused subtle host crashes. Signed-off-by: Jan Kiszka jan.kis...@siemens.com Signed-off-by: Avi Kivity a...@redhat.com diff --git a/arch/x86/kvm/vmx.c