aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIan Morris <ipm@chirality.org.uk>2015-10-11 12:32:16 -0400
committerPablo Neira Ayuso <pablo@netfilter.org>2015-10-13 08:12:38 -0400
commit7695495d5a838995befd59796772c5348125c92b (patch)
tree4d444bed23718a264bc13d77e6969469edda0260
parentcda219c6adb386687d64563671a5259ebf049d0e (diff)
netfilter: ipv6: code indentation
Use tabs instead of spaces to indent code. No changes detected by objdiff. Signed-off-by: Ian Morris <ipm@chirality.org.uk> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
-rw-r--r--net/ipv6/netfilter/ip6_tables.c4
-rw-r--r--net/ipv6/netfilter/ip6t_SYNPROXY.c2
-rw-r--r--net/ipv6/netfilter/nft_chain_route_ipv6.c6
3 files changed, 6 insertions, 6 deletions
diff --git a/net/ipv6/netfilter/ip6_tables.c b/net/ipv6/netfilter/ip6_tables.c
index 0654312c8f6f..62190c3da415 100644
--- a/net/ipv6/netfilter/ip6_tables.c
+++ b/net/ipv6/netfilter/ip6_tables.c
@@ -443,8 +443,8 @@ ip6t_do_table(struct sk_buff *skb,
443 break; 443 break;
444 } while (!acpar.hotdrop); 444 } while (!acpar.hotdrop);
445 445
446 xt_write_recseq_end(addend); 446 xt_write_recseq_end(addend);
447 local_bh_enable(); 447 local_bh_enable();
448 448
449#ifdef DEBUG_ALLOW_ALL 449#ifdef DEBUG_ALLOW_ALL
450 return NF_ACCEPT; 450 return NF_ACCEPT;
diff --git a/net/ipv6/netfilter/ip6t_SYNPROXY.c b/net/ipv6/netfilter/ip6t_SYNPROXY.c
index c2356602158a..5312e9dcebdb 100644
--- a/net/ipv6/netfilter/ip6t_SYNPROXY.c
+++ b/net/ipv6/netfilter/ip6t_SYNPROXY.c
@@ -244,7 +244,7 @@ synproxy_send_client_ack(const struct synproxy_net *snet,
244 synproxy_build_options(nth, opts); 244 synproxy_build_options(nth, opts);
245 245
246 synproxy_send_tcp(snet, skb, nskb, skb->nfct, IP_CT_ESTABLISHED_REPLY, 246 synproxy_send_tcp(snet, skb, nskb, skb->nfct, IP_CT_ESTABLISHED_REPLY,
247 niph, nth, tcp_hdr_size); 247 niph, nth, tcp_hdr_size);
248} 248}
249 249
250static bool 250static bool
diff --git a/net/ipv6/netfilter/nft_chain_route_ipv6.c b/net/ipv6/netfilter/nft_chain_route_ipv6.c
index 9df75bd7c94a..71d995ff3108 100644
--- a/net/ipv6/netfilter/nft_chain_route_ipv6.c
+++ b/net/ipv6/netfilter/nft_chain_route_ipv6.c
@@ -61,11 +61,11 @@ static const struct nf_chain_type nft_chain_route_ipv6 = {
61 .name = "route", 61 .name = "route",
62 .type = NFT_CHAIN_T_ROUTE, 62 .type = NFT_CHAIN_T_ROUTE,
63 .family = NFPROTO_IPV6, 63 .family = NFPROTO_IPV6,
64 .owner = THIS_MODULE, 64 .owner = THIS_MODULE,
65 .hook_mask = (1 << NF_INET_LOCAL_OUT), 65 .hook_mask = (1 << NF_INET_LOCAL_OUT),
66 .hooks = { 66 .hooks = {
67 [NF_INET_LOCAL_OUT] = nf_route_table_hook, 67 [NF_INET_LOCAL_OUT] = nf_route_table_hook,
68 }, 68 },
69}; 69};
70 70
71static int __init nft_chain_route_init(void) 71static int __init nft_chain_route_init(void)