From: Purna Pavan Chandra Aekkaladevi Date: Mon, 18 Mar 2024 12:09:11 +0000 (-0700) Subject: x86/hyperv: Cosmetic changes for hv_spinlock.c X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=eac03d81cdd941358511ffb8c19bd7d384874430;p=linux.git x86/hyperv: Cosmetic changes for hv_spinlock.c Fix issues reported by checkpatch.pl script for hv_spinlock.c file. - Place __initdata after variable name - Add missing blank line after enum declaration No functional changes intended. Signed-off-by: Purna Pavan Chandra Aekkaladevi Reviewed-by: Saurabh Sengar Link: https://lore.kernel.org/r/1710763751-14137-1-git-send-email-paekkaladevi@linux.microsoft.com Signed-off-by: Wei Liu Message-ID: <1710763751-14137-1-git-send-email-paekkaladevi@linux.microsoft.com> --- diff --git a/arch/x86/hyperv/hv_spinlock.c b/arch/x86/hyperv/hv_spinlock.c index 737d6f7a61553..151e851bef09d 100644 --- a/arch/x86/hyperv/hv_spinlock.c +++ b/arch/x86/hyperv/hv_spinlock.c @@ -16,7 +16,7 @@ #include #include -static bool __initdata hv_pvspin = true; +static bool hv_pvspin __initdata = true; static void hv_qlock_kick(int cpu) { @@ -64,6 +64,7 @@ __visible bool hv_vcpu_is_preempted(int vcpu) { return false; } + PV_CALLEE_SAVE_REGS_THUNK(hv_vcpu_is_preempted); void __init hv_init_spinlocks(void)