From: Atul Kumar Pant Date: Thu, 17 Aug 2023 17:08:19 +0000 (+0530) Subject: samples: kprobes: Fixes a typo X-Git-Tag: microblaze-v6.8~126^2~7 X-Git-Url: http://git.monstr.eu/?a=commitdiff_plain;h=a110d17240671f4417a2a676be48bda03fe64866;p=linux-2.6-microblaze.git samples: kprobes: Fixes a typo Fixes typo in a function name. Link: https://lore.kernel.org/all/20230817170819.77857-1-atulpant.linux@gmail.com/ Signed-off-by: Atul Kumar Pant Acked-by: Masami Hiramatsu (Google) Signed-off-by: Masami Hiramatsu (Google) --- diff --git a/samples/kprobes/kretprobe_example.c b/samples/kprobes/kretprobe_example.c index cbf16542d84e..ed79fd3d48fb 100644 --- a/samples/kprobes/kretprobe_example.c +++ b/samples/kprobes/kretprobe_example.c @@ -35,7 +35,7 @@ struct my_data { ktime_t entry_stamp; }; -/* Here we use the entry_hanlder to timestamp function entry */ +/* Here we use the entry_handler to timestamp function entry */ static int entry_handler(struct kretprobe_instance *ri, struct pt_regs *regs) { struct my_data *data;