[NET]: Change some "if (x) BUG();" to "BUG_ON(x);"
This changes some simple "if (x) BUG();" statements to "BUG_ON(x);" Signed-off-by: Kris Katterjohn <kjak@users.sourceforge.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
4bba392592
commit
09a626600b
@@ -122,8 +122,7 @@ svc_init_buffer(struct svc_rqst *rqstp, unsigned int size)
|
||||
rqstp->rq_argused = 0;
|
||||
rqstp->rq_resused = 0;
|
||||
arghi = 0;
|
||||
if (pages > RPCSVC_MAXPAGES)
|
||||
BUG();
|
||||
BUG_ON(pages > RPCSVC_MAXPAGES);
|
||||
while (pages) {
|
||||
struct page *p = alloc_page(GFP_KERNEL);
|
||||
if (!p)
|
||||
|
Reference in New Issue
Block a user