diff options
author | Octavian Purdila <opurdila@ixiacom.com> | 2010-01-13 21:10:36 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-01-13 21:10:36 -0500 |
commit | cd65c3c7d1081290b7365897c2290a84aa967d4d (patch) | |
tree | e68ac534c2701dd6ec98fa2af3a2d1eaf609d0fe /include/net/ip.h | |
parent | 2570a4f5428bcdb1077622342181755741e7fa60 (diff) |
net: fix build erros with CONFIG_BUG=n, CONFIG_GENERIC_BUG=n
Fixed build errors introduced by commit 7ad6848c (ip: fix mc_loop
checks for tunnels with multicast outer addresses)
Signed-off-by: Octavian Purdila <opurdila@ixiacom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/ip.h')
-rw-r--r-- | include/net/ip.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/ip.h b/include/net/ip.h index d9a0e74d8923..fb63371c07a8 100644 --- a/include/net/ip.h +++ b/include/net/ip.h | |||
@@ -338,7 +338,7 @@ static inline int sk_mc_loop(struct sock *sk) | |||
338 | return inet6_sk(sk)->mc_loop; | 338 | return inet6_sk(sk)->mc_loop; |
339 | #endif | 339 | #endif |
340 | } | 340 | } |
341 | __WARN(); | 341 | WARN_ON(1); |
342 | return 1; | 342 | return 1; |
343 | } | 343 | } |
344 | 344 | ||