diff options
author | Thomas Graf <tgraf@suug.ch> | 2012-06-13 18:40:15 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-06-14 04:45:46 -0400 |
commit | b3908e22ad8bb6074934496ef171fd83605d7d3e (patch) | |
tree | adc90759c42e8ab9f0a3e2a3c500243df2b11ecc /net/dcb/dcbnl.c | |
parent | 39912f9cf9603f0de085fb5ba916a7a88010ccd9 (diff) |
dcbnl: Use BUG_ON() instead of BUG()
Signed-off-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dcb/dcbnl.c')
-rw-r--r-- | net/dcb/dcbnl.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/net/dcb/dcbnl.c b/net/dcb/dcbnl.c index da6ee81ce51f..0a360072cfec 100644 --- a/net/dcb/dcbnl.c +++ b/net/dcb/dcbnl.c | |||
@@ -208,10 +208,7 @@ static struct sk_buff *dcbnl_newmsg(int type, u8 cmd, u32 port, u32 seq, | |||
208 | return NULL; | 208 | return NULL; |
209 | 209 | ||
210 | nlh = nlmsg_put(skb, port, seq, type, sizeof(*dcb), flags); | 210 | nlh = nlmsg_put(skb, port, seq, type, sizeof(*dcb), flags); |
211 | if (!nlh) { | 211 | BUG_ON(!nlh); |
212 | /* header should always fit, allocation must be buggy */ | ||
213 | BUG(); | ||
214 | } | ||
215 | 212 | ||
216 | dcb = nlmsg_data(nlh); | 213 | dcb = nlmsg_data(nlh); |
217 | dcb->dcb_family = AF_UNSPEC; | 214 | dcb->dcb_family = AF_UNSPEC; |