diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2023-03-24 09:44:43 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2023-03-24 09:44:43 -0700 |
commit | 2495697422d374b097151205d399ff0dcbaa08e0 (patch) | |
tree | 1ed45269f4c885b36e427ed64e0f0cb02f41dd80 /arch/x86 | |
parent | 4bae0ad148f41904dd4e5857bdc2e3e31b950b3d (diff) | |
parent | aadbd07ff8a75ed342388846da78dfaddb8b106a (diff) | |
download | linux-stable-2495697422d374b097151205d399ff0dcbaa08e0.tar.gz linux-stable-2495697422d374b097151205d399ff0dcbaa08e0.tar.bz2 linux-stable-2495697422d374b097151205d399ff0dcbaa08e0.zip |
Merge tag 'for-linus-6.3-rc4-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip
Pull xen fixes from Juergen Gross:
- fix build warning
- avoid concurrent accesses to the Xen PV console ring page
* tag 'for-linus-6.3-rc4-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip:
x86/PVH: avoid 32-bit build warning when obtaining VGA console info
hvc/xen: prevent concurrent accesses to the shared ring
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/xen/enlighten_pvh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/xen/enlighten_pvh.c b/arch/x86/xen/enlighten_pvh.c index 1da44aca896c..ada3868c02c2 100644 --- a/arch/x86/xen/enlighten_pvh.c +++ b/arch/x86/xen/enlighten_pvh.c @@ -48,7 +48,7 @@ void __init xen_pvh_init(struct boot_params *boot_params) struct xen_platform_op op = { .cmd = XENPF_get_dom0_console, }; - long ret = HYPERVISOR_platform_op(&op); + int ret = HYPERVISOR_platform_op(&op); if (ret > 0) xen_init_vga(&op.u.dom0_console, |