qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [6018] Initialize msr list size properly in KVM


From: Anthony Liguori
Subject: [Qemu-devel] [6018] Initialize msr list size properly in KVM
Date: Sat, 13 Dec 2008 20:49:31 +0000

Revision: 6018
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6018
Author:   aliguori
Date:     2008-12-13 20:49:31 +0000 (Sat, 13 Dec 2008)

Log Message:
-----------
Initialize msr list size properly in KVM

Hollis Blanchard noticed that the last commit was not sufficient.  We also need
to initialize the msr size in our newly allocated list.

Signed-off-by: Anthony Liguori <address@hidden>

Modified Paths:
--------------
    trunk/target-i386/kvm.c

Modified: trunk/target-i386/kvm.c
===================================================================
--- trunk/target-i386/kvm.c     2008-12-13 20:41:58 UTC (rev 6017)
+++ trunk/target-i386/kvm.c     2008-12-13 20:49:31 UTC (rev 6018)
@@ -100,6 +100,7 @@
         if (kvm_msr_list == NULL)
             return 0;
 
+        kvm_msr_list->nmsrs = msr_list.nmsrs;
         ret = kvm_ioctl(env->kvm_state, KVM_GET_MSR_INDEX_LIST, kvm_msr_list);
         if (ret >= 0) {
             int i;






reply via email to

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