diff options
author | 2025-07-23 17:51:34 +1000 | |
---|---|---|
committer | 2025-07-24 08:32:59 -0600 | |
commit | 3597405effbb17f3dc15b714be04398a91c87a62 (patch) | |
tree | 5511c2aacda76a4a393fdaadf07380fa29fa9027 | |
parent | docs: fault-injection: drop reference to md-faulty (diff) | |
download | wireguard-linux-3597405effbb17f3dc15b714be04398a91c87a62.tar.xz wireguard-linux-3597405effbb17f3dc15b714be04398a91c87a62.zip |
Documentation: core-api: entry: Replace deprecated KVM entry/exit functions
The x86-specific functions kvm_guest_{enter,exit}_irqoff() were removed
and replaced by the generic guest_state_{enter,exit}_irqoff() in commit
ef9989afda73 ("kvm: add guest_state_{enter,exit}_irqoff()") and commit
b2d2af7e5df3 ("kvm/x86: rework guest entry logic").
Update the references in the entry/exit handling documentation.
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Nicolas Saenz Julienne <nsaenz@amazon.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Andrew Donnellan <ajd@linux.ibm.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Link: https://lore.kernel.org/r/20250723075134.105132-1-ajd@linux.ibm.com
-rw-r--r-- | Documentation/core-api/entry.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/core-api/entry.rst b/Documentation/core-api/entry.rst index e406a325341d..71d8eedc0549 100644 --- a/Documentation/core-api/entry.rst +++ b/Documentation/core-api/entry.rst @@ -115,8 +115,8 @@ Entering or exiting guest mode is very similar to syscalls. From the host kernel point of view the CPU goes off into user space when entering the guest and returns to the kernel on exit. -kvm_guest_enter_irqoff() is a KVM-specific variant of exit_to_user_mode() -and kvm_guest_exit_irqoff() is the KVM variant of enter_from_user_mode(). +guest_state_enter_irqoff() is a KVM-specific variant of exit_to_user_mode() +and guest_state_exit_irqoff() is the KVM variant of enter_from_user_mode(). The state operations have the same ordering. Task work handling is done separately for guest at the boundary of the |