linux-xiaomi-chiron/net/ipv6/netfilter
Jan Engelhardt d6b00a5345 netfilter: xtables: change targets to return error code
Part of the transition of done by this semantic patch:
// <smpl>
@ rule1 @
struct xt_target 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:49 +01:00
..
ip6_queue.c
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
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 targets to return error code 2010-03-25 16:55:49 +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 targets to return error code 2010-03-25 16:55:49 +01:00
ip6t_rt.c netfilter: xtables: change matches to return error code 2010-03-25 16:55:24 +01:00
ip6table_filter.c
ip6table_mangle.c
ip6table_raw.c
ip6table_security.c
Kconfig
Makefile
nf_conntrack_l3proto_ipv6.c
nf_conntrack_proto_icmpv6.c
nf_conntrack_reasm.c netfilter: ipv6: use NFPROTO values for NF_HOOK invocation 2010-03-25 16:00:49 +01:00