mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 20:51:44 +00:00
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: Eric Sesterhenn <snakebyte@gmx.de> Signed-off-by: Adrian Bunk <bunk@stusta.de>
This commit is contained in:
parent
9ba025f108
commit
524223ca81
@ -30,8 +30,7 @@
|
||||
*/
|
||||
void __ptrace_link(task_t *child, task_t *new_parent)
|
||||
{
|
||||
if (!list_empty(&child->ptrace_list))
|
||||
BUG();
|
||||
BUG_ON(!list_empty(&child->ptrace_list));
|
||||
if (child->parent == new_parent)
|
||||
return;
|
||||
list_add(&child->ptrace_list, &child->parent->ptrace_children);
|
||||
|
Loading…
Reference in New Issue
Block a user