KVM: VMX: Fold __vmx_vcpu_run() into vmx_vcpu_run()
authorAvi Kivity <avi@redhat.com>
Thu, 18 Nov 2010 11:12:52 +0000 (13:12 +0200)
committerAvi Kivity <avi@redhat.com>
Wed, 12 Jan 2011 09:29:37 +0000 (11:29 +0200)
commit104f226bfd0a607ca0e804ae4907555374f72cd9
treee3a792eef60ee304fc797397db52519a709a9f41
parent30b31ab6823988263c72a215fb875edec6161250
KVM: VMX: Fold __vmx_vcpu_run() into vmx_vcpu_run()

cea15c2 ("KVM: Move KVM context switch into own function") split vmx_vcpu_run()
to prevent multiple copies of the context switch from being generated (causing
problems due to a label).  This patch folds them back together again and adds
the __noclone attribute to prevent the label from being duplicated.

Signed-off-by: Avi Kivity <avi@redhat.com>
arch/x86/kvm/vmx.c