Skip to content

Commit e0196ae

Browse files
Colin Ian Kingrostedt
authored andcommitted
ftrace: Fix spelling mistake "disabed" -> "disabled"
There is a spelling mistake in a comment, fix it. Link: https://lkml.kernel.org/r/[email protected] Signed-off-by: Colin Ian King <[email protected]> Signed-off-by: Steven Rostedt (VMware) <[email protected]>
1 parent 421d9d1 commit e0196ae

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

arch/csky/kernel/probes/ftrace.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ int arch_check_ftrace_location(struct kprobe *p)
99
return 0;
1010
}
1111

12-
/* Ftrace callback handler for kprobes -- called under preepmt disabed */
12+
/* Ftrace callback handler for kprobes -- called under preepmt disabled */
1313
void kprobe_ftrace_handler(unsigned long ip, unsigned long parent_ip,
1414
struct ftrace_ops *ops, struct ftrace_regs *fregs)
1515
{

arch/riscv/kernel/probes/ftrace.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
#include <linux/kprobes.h>
44

5-
/* Ftrace callback handler for kprobes -- called under preepmt disabed */
5+
/* Ftrace callback handler for kprobes -- called under preepmt disabled */
66
void kprobe_ftrace_handler(unsigned long ip, unsigned long parent_ip,
77
struct ftrace_ops *ops, struct ftrace_regs *regs)
88
{

arch/x86/kernel/kprobes/ftrace.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
#include "common.h"
1414

15-
/* Ftrace callback handler for kprobes -- called under preepmt disabed */
15+
/* Ftrace callback handler for kprobes -- called under preepmt disabled */
1616
void kprobe_ftrace_handler(unsigned long ip, unsigned long parent_ip,
1717
struct ftrace_ops *ops, struct ftrace_regs *fregs)
1818
{

0 commit comments

Comments
 (0)