projects
/
GitHub
/
LineageOS
/
android_kernel_samsung_universal7580.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2570a4f
)
net: fix build erros with CONFIG_BUG=n, CONFIG_GENERIC_BUG=n
author
Octavian Purdila
<opurdila@ixiacom.com>
Thu, 14 Jan 2010 02:10:36 +0000
(18:10 -0800)
committer
David S. Miller
<davem@davemloft.net>
Thu, 14 Jan 2010 02:10:36 +0000
(18:10 -0800)
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>
include/net/ip.h
patch
|
blob
|
blame
|
history
diff --git
a/include/net/ip.h
b/include/net/ip.h
index d9a0e74d8923731ff60c41fde87b48ec936f59d1..fb63371c07a8e90ab277add8153dea6b5b2a0371 100644
(file)
--- a/
include/net/ip.h
+++ b/
include/net/ip.h
@@
-338,7
+338,7
@@
static inline int sk_mc_loop(struct sock *sk)
return inet6_sk(sk)->mc_loop;
#endif
}
-
__WARN(
);
+
WARN_ON(1
);
return 1;
}