]> git.ipfire.org Git - people/arne_f/kernel.git/commitdiff
x86/hyperv: Make hv_vcpu_is_preempted() visible
authorAndi Kleen <ak@linux.intel.com>
Sat, 30 Mar 2019 00:47:40 +0000 (17:47 -0700)
committerThomas Gleixner <tglx@linutronix.de>
Fri, 19 Apr 2019 15:58:57 +0000 (17:58 +0200)
This function is referrenced from assembler, so it needs to be marked
visible for LTO.

Fixes: 3a025de64bf8 ("x86/hyperv: Enable PV qspinlock for Hyper-V")
Signed-off-by: Andi Kleen <ak@linux.intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Yi Sun <yi.y.sun@linux.intel.com>
Cc: kys@microsoft.com
Cc: haiyangz@microsoft.com
Link: https://lkml.kernel.org/r/20190330004743.29541-6-andi@firstfloor.org
arch/x86/hyperv/hv_spinlock.c

index a861b0456b1a7a0bd1e71bb2e948f169ae9a8a09..07f21a06392fb9940c28025e654d66c2740846f1 100644 (file)
@@ -56,7 +56,7 @@ static void hv_qlock_wait(u8 *byte, u8 val)
 /*
  * Hyper-V does not support this so far.
  */
-bool hv_vcpu_is_preempted(int vcpu)
+__visible bool hv_vcpu_is_preempted(int vcpu)
 {
        return false;
 }