diff options
author | 2024-07-10 13:01:39 +0200 | |
---|---|---|
committer | 2024-07-11 16:33:51 +0200 | |
commit | 9fe6a8c5b247e182c1781556794324a8e26a7cd3 (patch) | |
tree | 914914ba17e693390bfbd9ddf98019adf2d10e55 /kernel | |
parent | x86/xen: eliminate some private header files (diff) | |
download | wireguard-linux-9fe6a8c5b247e182c1781556794324a8e26a7cd3.tar.xz wireguard-linux-9fe6a8c5b247e182c1781556794324a8e26a7cd3.zip |
x86/xen: remove deprecated xen_nopvspin boot parameter
The xen_nopvspin boot parameter is deprecated since 2019. nopvspin
can be used instead.
Remove the xen_nopvspin boot parameter and replace the xen_pvspin
variable use cases with nopvspin.
This requires to move the nopvspin variable out of the .initdata
section, as it needs to be accessed for cpuhotplug, too.
Signed-off-by: Juergen Gross <jgross@suse.com>
Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Message-ID: <20240710110139.22300-1-jgross@suse.com>
Signed-off-by: Juergen Gross <jgross@suse.com>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/locking/qspinlock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/locking/qspinlock.c b/kernel/locking/qspinlock.c index 1df5fef8a656..7d96bed718e4 100644 --- a/kernel/locking/qspinlock.c +++ b/kernel/locking/qspinlock.c @@ -583,7 +583,7 @@ EXPORT_SYMBOL(queued_spin_lock_slowpath); #include "qspinlock_paravirt.h" #include "qspinlock.c" -bool nopvspin __initdata; +bool nopvspin; static __init int parse_nopvspin(char *arg) { nopvspin = true; |