From patchwork Thu Jan 19 11:01:09 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: hyper-v. Fix broken build due to missing references. All credits go to Jan Kiszka, who reported and fixed this issue. Date: Thu, 19 Jan 2012 01:01:09 -0000 From: Vadim Rozenfeld X-Patchwork-Id: 136816 Message-Id: <1326970869-6088-1-git-send-email-vrozenfe@redhat.com> To: Cc: Marcelo Tosatti , Jan Kiszka , Avi Kivity , kvm@vger.kernel.org, vrozenfe@redhat.com --- target-i386/hyperv.h | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/target-i386/hyperv.h b/target-i386/hyperv.h index 0d742f8..15467bf 100644 --- a/target-i386/hyperv.h +++ b/target-i386/hyperv.h @@ -24,9 +24,15 @@ #define KVM_CPUID_SIGNATURE_NEXT 0x40000100 #endif +#ifndef CONFIG_USER_ONLY void hyperv_enable_vapic_recommended(bool val); void hyperv_enable_relaxed_timing(bool val); void hyperv_set_spinlock_retries(int val); +#else +static inline void hyperv_enable_vapic_recommended(bool val) { } +static inline void hyperv_enable_relaxed_timing(bool val) { } +static inline void hyperv_set_spinlock_retries(int val) { } +#endif bool hyperv_enabled(void); bool hyperv_hypercall_available(void);