Skip to content

Commit 02b2fb4

Browse files
zhouchuangaoJessica Yu
authored andcommitted
kernel/module: Use BUG_ON instead of if condition followed by BUG
Fix the following coccinelle report: kernel/module.c:1018:2-5: WARNING: Use BUG_ON instead of if condition followed by BUG. BUG_ON uses unlikely in if(). Through disassembly, we can see that brk #0x800 is compiled to the end of the function. As you can see below: ...... ffffff8008660bec: d65f03c0 ret ffffff8008660bf0: d4210000 brk #0x800 Usually, the condition in if () is not satisfied. For the multi-stage pipeline, we do not need to perform fetch decode and excute operation on brk instruction. In my opinion, this can improve the efficiency of the multi-stage pipeline. Signed-off-by: zhouchuangao <[email protected]> Signed-off-by: Jessica Yu <[email protected]>
1 parent 6efb943 commit 02b2fb4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

kernel/module.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1014,8 +1014,7 @@ void __symbol_put(const char *symbol)
10141014
};
10151015

10161016
preempt_disable();
1017-
if (!find_symbol(&fsa))
1018-
BUG();
1017+
BUG_ON(!find_symbol(&fsa));
10191018
module_put(fsa.owner);
10201019
preempt_enable();
10211020
}

0 commit comments

Comments
 (0)