Skip to content

Commit

Permalink
BUG_ON() Conversion in fs/binfmt_elf_fdpic.c
Browse files Browse the repository at this point in the history
this changes if() BUG(); constructs to BUG_ON() which is
cleaner and can better optimized away

Signed-off-by: Eric Sesterhenn <snakebyte@gmx.de>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
  • Loading branch information
Eric Sesterhenn authored and Adrian Bunk committed Mar 24, 2006
1 parent b1eecf7 commit 88bcd51
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions fs/binfmt_elf_fdpic.c
Original file line number Diff line number Diff line change
Expand Up @@ -572,8 +572,7 @@ static int create_elf_fdpic_tables(struct linux_binprm *bprm,
csp -= sizeof(unsigned long);
__put_user(bprm->argc, (unsigned long *) csp);

if (csp != sp)
BUG();
BUG_ON(csp != sp);

/* fill in the argv[] array */
#ifdef CONFIG_MMU
Expand Down

0 comments on commit 88bcd51

Please sign in to comment.