mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
BUG_ON() conversion in fs/nfsd/
This patch converts an if () BUG(); construct to BUG_ON(); which occupies less space, uses unlikely and is safer when BUG() is disabled. Signed-off-by: Eric Sesterhenn <snakebyte@gmx.de> Signed-off-by: Adrian Bunk <bunk@stusta.de>
This commit is contained in:
parent
14a61442c2
commit
73dff8be9e
1 changed files with 1 additions and 2 deletions
|
@ -198,8 +198,7 @@ static char *savemem(struct nfsd4_compoundargs *argp, u32 *p, int nbytes)
|
|||
p = new;
|
||||
memcpy(p, argp->tmp, nbytes);
|
||||
} else {
|
||||
if (p != argp->tmpp)
|
||||
BUG();
|
||||
BUG_ON(p != argp->tmpp);
|
||||
argp->tmpp = NULL;
|
||||
}
|
||||
if (defer_free(argp, kfree, p)) {
|
||||
|
|
Loading…
Reference in a new issue