diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2025-11-15 08:46:18 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2025-11-15 08:46:18 -0800 |
| commit | e256f7b4e57d9f1149efd0e7745f77d8e615177b (patch) | |
| tree | 71a7dea4ce74587e1f2193dd34e4f35e3035c0f3 | |
| parent | 7a0892d2836e12cc61b6823f888629a3eb64e268 (diff) | |
| parent | ebd4469e7af61019daaf904fdcba07a9ecd18440 (diff) | |
| download | linux-e256f7b4e57d9f1149efd0e7745f77d8e615177b.tar.gz | |
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
| -rw-r--r-- | include/linux/entry-virt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/entry-virt.h b/include/linux/entry-virt.h index 42c89e3e5ca7ac..bfa767702d9a69 100644 --- a/include/linux/entry-virt.h +++ b/include/linux/entry-virt.h @@ -32,7 +32,7 @@ */ static inline int arch_xfer_to_guest_mode_handle_work(unsigned long ti_work); -#ifndef arch_xfer_to_guest_mode_work +#ifndef arch_xfer_to_guest_mode_handle_work static inline int arch_xfer_to_guest_mode_handle_work(unsigned long ti_work) { return 0; |
