From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47806) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WVNAK-0003l1-3y for qemu-devel@nongnu.org; Wed, 02 Apr 2014 11:33:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WVNAB-0005HV-3R for qemu-devel@nongnu.org; Wed, 02 Apr 2014 11:33:24 -0400 Received: from mail-qa0-x232.google.com ([2607:f8b0:400d:c00::232]:49030) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WVNAA-0005HP-Uh for qemu-devel@nongnu.org; Wed, 02 Apr 2014 11:33:15 -0400 Received: by mail-qa0-f50.google.com with SMTP id o15so341685qap.9 for ; Wed, 02 Apr 2014 08:33:14 -0700 (PDT) Sender: Paolo Bonzini From: Paolo Bonzini Date: Wed, 2 Apr 2014 17:33:02 +0200 Message-Id: <1396452782-21473-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PATCH for-2.0] target-i386: reorder fields in cpu/msr_hyperv_hypercall subsection List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: mst@redhat.com The subsection already exists in one well-known enterprise Linux distribution, but for some strange reason the fields were swapped when forward-porting the patch to upstream. Limit headaches for said enterprise Linux distributor when the time will come to rebase their version of QEMU. Signed-off-by: Paolo Bonzini --- target-i386/machine.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target-i386/machine.c b/target-i386/machine.c index 24bc373..168cab6 100644 --- a/target-i386/machine.c +++ b/target-i386/machine.c @@ -569,8 +569,8 @@ static const VMStateDescription vmstate_msr_hypercall_hypercall = { .minimum_version_id = 1, .minimum_version_id_old = 1, .fields = (VMStateField []) { - VMSTATE_UINT64(env.msr_hv_hypercall, X86CPU), VMSTATE_UINT64(env.msr_hv_guest_os_id, X86CPU), + VMSTATE_UINT64(env.msr_hv_hypercall, X86CPU), VMSTATE_END_OF_LIST() } }; -- 1.9.0