Skip to content

Commit e256f7b

Browse files
committed
Merge tag 'core-urgent-2025-11-15' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull core fix from Ingo Molnar: "Fix a broken #ifndef in the <linux/entry-virt.h> header. It hasn't caused problems upstream yet because no arch overrides arch_xfer_to_guest_mode_handle_work() at this moment" * tag 'core-urgent-2025-11-15' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: entry: Fix ifndef around arch_xfer_to_guest_mode_handle_work() stub
2 parents 7a0892d + ebd4469 commit e256f7b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/linux/entry-virt.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
*/
3333
static inline int arch_xfer_to_guest_mode_handle_work(unsigned long ti_work);
3434

35-
#ifndef arch_xfer_to_guest_mode_work
35+
#ifndef arch_xfer_to_guest_mode_handle_work
3636
static inline int arch_xfer_to_guest_mode_handle_work(unsigned long ti_work)
3737
{
3838
return 0;

0 commit comments

Comments
 (0)