Commit 524223ca authored by Eric Sesterhenn's avatar Eric Sesterhenn Committed by Adrian Bunk

BUG_ON() Conversion in kernel/ptrace.c

this changes if() BUG(); constructs to BUG_ON() which is
cleaner, contains unlikely() and can better optimized away.
Signed-off-by: default avatarEric Sesterhenn <snakebyte@gmx.de>
Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
parent 9ba025f1
...@@ -30,8 +30,7 @@ ...@@ -30,8 +30,7 @@
*/ */
void __ptrace_link(task_t *child, task_t *new_parent) void __ptrace_link(task_t *child, task_t *new_parent)
{ {
if (!list_empty(&child->ptrace_list)) BUG_ON(!list_empty(&child->ptrace_list));
BUG();
if (child->parent == new_parent) if (child->parent == new_parent)
return; return;
list_add(&child->ptrace_list, &child->parent->ptrace_children); list_add(&child->ptrace_list, &child->parent->ptrace_children);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment