We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 038d61f commit a3e892aCopy full SHA for a3e892a
kernel/trace/fprobe.c
@@ -352,7 +352,7 @@ static void fprobe_return(struct ftrace_graph_ret *trace,
352
size_words = SIZE_IN_LONG(size);
353
ret_ip = ftrace_regs_get_instruction_pointer(fregs);
354
355
- preempt_disable();
+ preempt_disable_notrace();
356
357
curr = 0;
358
while (size_words > curr) {
@@ -368,7 +368,7 @@ static void fprobe_return(struct ftrace_graph_ret *trace,
368
}
369
curr += size;
370
371
- preempt_enable();
+ preempt_enable_notrace();
372
373
NOKPROBE_SYMBOL(fprobe_return);
374
0 commit comments