[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
@@ -248,11 +248,9 @@ EXPORT_SYMBOL(xfrm_policy_alloc);
|
||||
|
||||
void __xfrm_policy_destroy(struct xfrm_policy *policy)
|
||||
{
|
||||
if (!policy->dead)
|
||||
BUG();
|
||||
BUG_ON(!policy->dead);
|
||||
|
||||
if (policy->bundles)
|
||||
BUG();
|
||||
BUG_ON(policy->bundles);
|
||||
|
||||
if (del_timer(&policy->timer))
|
||||
BUG();
|
||||
|
Reference in New Issue
Block a user