|
@@ -1858,7 +1858,7 @@ static void handle_trampoline(struct pt_regs *regs)
|
|
|
|
|
|
sigill:
|
|
|
uprobe_warn(current, "handle uretprobe, sending SIGILL.");
|
|
|
- force_sig_info(SIGILL, SEND_SIG_FORCED, current);
|
|
|
+ force_sig(SIGILL, current);
|
|
|
|
|
|
}
|
|
|
|
|
@@ -1966,7 +1966,7 @@ static void handle_singlestep(struct uprobe_task *utask, struct pt_regs *regs)
|
|
|
|
|
|
if (unlikely(err)) {
|
|
|
uprobe_warn(current, "execute the probed insn, sending SIGILL.");
|
|
|
- force_sig_info(SIGILL, SEND_SIG_FORCED, current);
|
|
|
+ force_sig(SIGILL, current);
|
|
|
}
|
|
|
}
|
|
|
|