mirror of https://gitee.com/openkylin/linux.git
BUG_ON() Conversion in fs/fcntl.c
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>
This commit is contained in:
parent
8abf6a4707
commit
f6298aab2e
|
@ -453,8 +453,7 @@ static void send_sigio_to_task(struct task_struct *p,
|
||||||
/* Make sure we are called with one of the POLL_*
|
/* Make sure we are called with one of the POLL_*
|
||||||
reasons, otherwise we could leak kernel stack into
|
reasons, otherwise we could leak kernel stack into
|
||||||
userspace. */
|
userspace. */
|
||||||
if ((reason & __SI_MASK) != __SI_POLL)
|
BUG_ON((reason & __SI_MASK) != __SI_POLL);
|
||||||
BUG();
|
|
||||||
if (reason - POLL_IN >= NSIGPOLL)
|
if (reason - POLL_IN >= NSIGPOLL)
|
||||||
si.si_band = ~0L;
|
si.si_band = ~0L;
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue