提交 88bcd512 编写于 作者: E Eric Sesterhenn 提交者: Adrian Bunk

BUG_ON() Conversion in fs/binfmt_elf_fdpic.c

this changes if() BUG(); constructs to BUG_ON() which is
cleaner and can better optimized away
Signed-off-by: NEric Sesterhenn <snakebyte@gmx.de>
Signed-off-by: NAdrian Bunk <bunk@stusta.de>
上级 b1eecf7e
...@@ -572,8 +572,7 @@ static int create_elf_fdpic_tables(struct linux_binprm *bprm, ...@@ -572,8 +572,7 @@ static int create_elf_fdpic_tables(struct linux_binprm *bprm,
csp -= sizeof(unsigned long); csp -= sizeof(unsigned long);
__put_user(bprm->argc, (unsigned long *) csp); __put_user(bprm->argc, (unsigned long *) csp);
if (csp != sp) BUG_ON(csp != sp);
BUG();
/* fill in the argv[] array */ /* fill in the argv[] array */
#ifdef CONFIG_MMU #ifdef CONFIG_MMU
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册