Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 195071
b: refs/heads/master
c: af56760
h: refs/heads/master
i:
  195069: 051b259
  195067: 08b99cf
  195063: ed07661
  195055: b466331
  195039: 14570a2
  195007: 67ec2b1
  194943: dd0cb95
  194815: d885444
  194559: d61d5ef
v: v3
  • Loading branch information
Stephen Hemminger authored and Patrick McHardy committed May 13, 2010
1 parent 68f022a commit 38bb1ea
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 19 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e94c67436efa22af7d8b7d19c885863246042543
refs/heads/master: af5676039a9479e6ff42c6aab9fac1149ac9597f
7 changes: 1 addition & 6 deletions trunk/net/ipv4/netfilter/arp_tables.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,7 @@ MODULE_DESCRIPTION("arptables core");
#endif

#ifdef CONFIG_NETFILTER_DEBUG
#define ARP_NF_ASSERT(x) \
do { \
if (!(x)) \
printk("ARP_NF_ASSERT: %s:%s:%u\n", \
__func__, __FILE__, __LINE__); \
} while(0)
#define ARP_NF_ASSERT(x) WARN_ON(!(x))
#else
#define ARP_NF_ASSERT(x)
#endif
Expand Down
7 changes: 1 addition & 6 deletions trunk/net/ipv4/netfilter/ip_tables.c
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,7 @@ MODULE_DESCRIPTION("IPv4 packet filter");
#endif

#ifdef CONFIG_NETFILTER_DEBUG
#define IP_NF_ASSERT(x) \
do { \
if (!(x)) \
printk("IP_NF_ASSERT: %s:%s:%u\n", \
__func__, __FILE__, __LINE__); \
} while(0)
#define IP_NF_ASSERT(x) WARN_ON(!(x))
#else
#define IP_NF_ASSERT(x)
#endif
Expand Down
7 changes: 1 addition & 6 deletions trunk/net/ipv6/netfilter/ip6_tables.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,7 @@ MODULE_DESCRIPTION("IPv6 packet filter");
#endif

#ifdef CONFIG_NETFILTER_DEBUG
#define IP_NF_ASSERT(x) \
do { \
if (!(x)) \
printk("IP_NF_ASSERT: %s:%s:%u\n", \
__func__, __FILE__, __LINE__); \
} while(0)
#define IP_NF_ASSERT(x) WARN_ON(!(x))
#else
#define IP_NF_ASSERT(x)
#endif
Expand Down

0 comments on commit 38bb1ea

Please sign in to comment.