linux/net/ipv6/netfilter
Jan Engelhardt bd414ee605 netfilter: xtables: change matches to return error code
The following semantic patch does part of the transformation:
// <smpl>
@ rule1 @
struct xt_match ops;
identifier check;
@@
 ops.checkentry = check;

@@
identifier rule1.check;
@@
 check(...) { <...
-return true;
+return 0;
 ...> }

@@
identifier rule1.check;
@@
 check(...) { <...
-return false;
+return -EINVAL;
 ...> }
// </smpl>

Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
2010-03-25 16:55:24 +01:00
..
ip6_queue.c Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6 2009-12-08 07:55:01 -08:00
ip6_tables.c netfilter: xtables: change matches to return error code 2010-03-25 16:55:24 +01:00
ip6t_ah.c netfilter: xtables: change matches to return error code 2010-03-25 16:55:24 +01:00
ip6t_eui64.c netfilter: ip6t_eui: fix read outside array bounds 2009-08-31 15:30:31 +02:00
ip6t_frag.c netfilter: xtables: change matches to return error code 2010-03-25 16:55:24 +01:00
ip6t_hbh.c netfilter: xtables: change matches to return error code 2010-03-25 16:55:24 +01:00
ip6t_ipv6header.c netfilter: xtables: change matches to return error code 2010-03-25 16:55:24 +01:00
ip6t_LOG.c netfilter: xtables: change xt_target.checkentry return type 2010-03-25 16:04:33 +01:00
ip6t_mh.c netfilter: xtables: change matches to return error code 2010-03-25 16:55:24 +01:00
ip6t_REJECT.c netfilter: xtables: change xt_target.checkentry return type 2010-03-25 16:04:33 +01:00
ip6t_rt.c netfilter: xtables: change matches to return error code 2010-03-25 16:55:24 +01:00
ip6table_filter.c netfilter: xtables: generate initial table on-demand 2010-02-10 17:50:47 +01:00
ip6table_mangle.c netfilter: iptables: remove unused function arguments 2010-02-15 16:56:51 +01:00
ip6table_raw.c netfilter: xtables: generate initial table on-demand 2010-02-10 17:50:47 +01:00
ip6table_security.c netfilter: xtables: generate initial table on-demand 2010-02-10 17:50:47 +01:00
Kconfig netfilter: trivial Kconfig spelling fixes 2009-03-24 13:35:27 -07:00
Makefile netfilter: Combine ipt_ttl and ip6t_hl source 2009-02-18 18:39:31 +01:00
nf_conntrack_l3proto_ipv6.c netfilter: nf_conntrack: add support for "conntrack zones" 2010-02-15 18:13:33 +01:00
nf_conntrack_proto_icmpv6.c netfilter: nf_conntrack: add support for "conntrack zones" 2010-02-15 18:13:33 +01:00
nf_conntrack_reasm.c netfilter: ipv6: use NFPROTO values for NF_HOOK invocation 2010-03-25 16:00:49 +01:00