All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] kernel/module: Use BUG_ON instead of if condition followed by BUG.
@ 2021-03-30 12:07 zhouchuangao
  2021-04-12 13:04 ` Jessica Yu
  0 siblings, 1 reply; 4+ messages in thread
From: zhouchuangao @ 2021-03-30 12:07 UTC (permalink / raw)
  To: Jessica Yu, linux-kernel; +Cc: zhouchuangao

It can be optimized at compile time.

Signed-off-by: zhouchuangao <zhouchuangao@vivo.com>
---
 kernel/module.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kernel/module.c b/kernel/module.c
index 3047935..f46fc4f 100644
--- a/kernel/module.c
+++ b/kernel/module.c
@@ -1014,8 +1014,8 @@ void __symbol_put(const char *symbol)
 	};
 
 	preempt_disable();
-	if (!find_symbol(&fsa))
-		BUG();
+	BUG_ON(!find_symbol(&fsa));
+
 	module_put(fsa.owner);
 	preempt_enable();
 }
-- 
2.7.4


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

end of thread, other threads:[~2021-04-13 12:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-30 12:07 [PATCH] kernel/module: Use BUG_ON instead of if condition followed by BUG zhouchuangao
2021-04-12 13:04 ` Jessica Yu
2021-04-13  7:21   ` 周传高
2021-04-13 12:42     ` Jessica Yu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.