mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] arm64/kernel/probes: Use BUG_ON instead of if condition followed by BUG.
@ 2021-03-30 11:57 zhouchuangao
  2021-03-30 12:08 ` Will Deacon
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: zhouchuangao @ 2021-03-30 11:57 UTC (permalink / raw)
  To: Catalin Marinas, Will Deacon, Masami Hiramatsu,
	Jean-Philippe Brucker, Andrew Morton, Qais Yousef, zhouchuangao,
	linux-arm-kernel, linux-kernel

It can be optimized at compile time.

Signed-off-by: zhouchuangao <zhouchuangao@vivo.com>
---
 arch/arm64/kernel/probes/kprobes.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/arch/arm64/kernel/probes/kprobes.c b/arch/arm64/kernel/probes/kprobes.c
index 66aac28..ecf0f61 100644
--- a/arch/arm64/kernel/probes/kprobes.c
+++ b/arch/arm64/kernel/probes/kprobes.c
@@ -264,8 +264,7 @@ int __kprobes kprobe_fault_handler(struct pt_regs *regs, unsigned int fsr)
 		 * normal page fault.
 		 */
 		instruction_pointer_set(regs, (unsigned long) cur->addr);
-		if (!instruction_pointer(regs))
-			BUG();
+		BUG_ON(!instruction_pointer(regs));
 
 		if (kcb->kprobe_status == KPROBE_REENTER)
 			restore_previous_kprobe(kcb);
-- 
2.7.4


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-04-14 10:10 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-30 11:57 [PATCH] arm64/kernel/probes: Use BUG_ON instead of if condition followed by BUG zhouchuangao
2021-03-30 12:08 ` Will Deacon
2021-04-01 10:49   ` 周传高
2021-04-01 21:21 ` Masami Hiramatsu
2021-04-14 10:07 ` Catalin Marinas

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®