Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

arm64: entry: Fix typo

Fix the following typo in entry-common.c
intrumentable => instrumentable

Signed-off-by: Mukesh Ojha <quic_mojha@quicinc.com>
Acked-by: Mark Rutland <mark.rutland@arm.com>
Link: https://lore.kernel.org/r/1667027268-1255-1-git-send-email-quic_mojha@quicinc.com
Signed-off-by: Will Deacon <will@kernel.org>

authored by

Mukesh Ojha and committed by
Will Deacon
59598b42 8a8112d8

+8 -8
+8 -8
arch/arm64/kernel/entry-common.c
··· 30 30 /* 31 31 * Handle IRQ/context state management when entering from kernel mode. 32 32 * Before this function is called it is not safe to call regular kernel code, 33 - * intrumentable code, or any code which may trigger an exception. 33 + * instrumentable code, or any code which may trigger an exception. 34 34 * 35 35 * This is intended to match the logic in irqentry_enter(), handling the kernel 36 36 * mode transitions only. ··· 63 63 /* 64 64 * Handle IRQ/context state management when exiting to kernel mode. 65 65 * After this function returns it is not safe to call regular kernel code, 66 - * intrumentable code, or any code which may trigger an exception. 66 + * instrumentable code, or any code which may trigger an exception. 67 67 * 68 68 * This is intended to match the logic in irqentry_exit(), handling the kernel 69 69 * mode transitions only, and with preemption handled elsewhere. ··· 97 97 /* 98 98 * Handle IRQ/context state management when entering from user mode. 99 99 * Before this function is called it is not safe to call regular kernel code, 100 - * intrumentable code, or any code which may trigger an exception. 100 + * instrumentable code, or any code which may trigger an exception. 101 101 */ 102 102 static __always_inline void __enter_from_user_mode(void) 103 103 { ··· 116 116 /* 117 117 * Handle IRQ/context state management when exiting to user mode. 118 118 * After this function returns it is not safe to call regular kernel code, 119 - * intrumentable code, or any code which may trigger an exception. 119 + * instrumentable code, or any code which may trigger an exception. 120 120 */ 121 121 static __always_inline void __exit_to_user_mode(void) 122 122 { ··· 152 152 /* 153 153 * Handle IRQ/context state management when entering an NMI from user/kernel 154 154 * mode. Before this function is called it is not safe to call regular kernel 155 - * code, intrumentable code, or any code which may trigger an exception. 155 + * code, instrumentable code, or any code which may trigger an exception. 156 156 */ 157 157 static void noinstr arm64_enter_nmi(struct pt_regs *regs) 158 158 { ··· 170 170 /* 171 171 * Handle IRQ/context state management when exiting an NMI from user/kernel 172 172 * mode. After this function returns it is not safe to call regular kernel 173 - * code, intrumentable code, or any code which may trigger an exception. 173 + * code, instrumentable code, or any code which may trigger an exception. 174 174 */ 175 175 static void noinstr arm64_exit_nmi(struct pt_regs *regs) 176 176 { ··· 192 192 /* 193 193 * Handle IRQ/context state management when entering a debug exception from 194 194 * kernel mode. Before this function is called it is not safe to call regular 195 - * kernel code, intrumentable code, or any code which may trigger an exception. 195 + * kernel code, instrumentable code, or any code which may trigger an exception. 196 196 */ 197 197 static void noinstr arm64_enter_el1_dbg(struct pt_regs *regs) 198 198 { ··· 207 207 /* 208 208 * Handle IRQ/context state management when exiting a debug exception from 209 209 * kernel mode. After this function returns it is not safe to call regular 210 - * kernel code, intrumentable code, or any code which may trigger an exception. 210 + * kernel code, instrumentable code, or any code which may trigger an exception. 211 211 */ 212 212 static void noinstr arm64_exit_el1_dbg(struct pt_regs *regs) 213 213 {