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,7 +63,7 @@ static void noinstr enter_from_kernel_mode(struct pt_regs *regs)
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,7 +97,7 @@ static void noinstr exit_to_kernel_mode(struct pt_regs *regs)
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,7 +116,7 @@ static __always_inline void enter_from_user_mode(struct pt_regs *regs)
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,7 +152,7 @@ asmlinkage void noinstr asm_exit_to_user_mode(struct pt_regs *regs)
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,7 +170,7 @@ static void noinstr arm64_enter_nmi(struct pt_regs *regs)
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,7 +192,7 @@ static void noinstr arm64_exit_nmi(struct pt_regs *regs)
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,7 +207,7 @@ static void noinstr arm64_enter_el1_dbg(struct pt_regs *regs)
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
{
0 commit comments