diff options
author | Igor Maravić <igorm@etf.rs> | 2011-12-11 21:58:22 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-12-16 15:49:51 -0500 |
commit | a3bf7ae9ae1036636d8900b35a3880e871eceb39 (patch) | |
tree | e82ab7e2598b756d44bdfe67b7b4ec434f5ff3cd /net/core | |
parent | ecedb6ae908e3a8a19942da921a3ffb1c5a0d6ab (diff) |
net:core: use IS_ENABLED
Use IS_ENABLED(CONFIG_FOO)
instead of defined(CONFIG_FOO) || defined (CONFIG_FOO_MODULE)
Signed-off-by: Igor Maravić <igorm@etf.rs>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core')
-rw-r--r-- | net/core/secure_seq.c | 2 | ||||
-rw-r--r-- | net/core/skbuff.c | 7 |
2 files changed, 4 insertions, 5 deletions
diff --git a/net/core/secure_seq.c b/net/core/secure_seq.c index 9fbca46f3e74..6fd44606fdd1 100644 --- a/net/core/secure_seq.c +++ b/net/core/secure_seq.c | |||
@@ -134,7 +134,7 @@ u32 secure_ipv4_port_ephemeral(__be32 saddr, __be32 daddr, __be16 dport) | |||
134 | EXPORT_SYMBOL_GPL(secure_ipv4_port_ephemeral); | 134 | EXPORT_SYMBOL_GPL(secure_ipv4_port_ephemeral); |
135 | #endif | 135 | #endif |
136 | 136 | ||
137 | #if defined(CONFIG_IP_DCCP) || defined(CONFIG_IP_DCCP_MODULE) | 137 | #if IS_ENABLED(CONFIG_IP_DCCP) |
138 | u64 secure_dccp_sequence_number(__be32 saddr, __be32 daddr, | 138 | u64 secure_dccp_sequence_number(__be32 saddr, __be32 daddr, |
139 | __be16 sport, __be16 dport) | 139 | __be16 sport, __be16 dport) |
140 | { | 140 | { |
diff --git a/net/core/skbuff.c b/net/core/skbuff.c index fd3646209b65..da0c97f2fab4 100644 --- a/net/core/skbuff.c +++ b/net/core/skbuff.c | |||
@@ -452,7 +452,7 @@ static void skb_release_head_state(struct sk_buff *skb) | |||
452 | WARN_ON(in_irq()); | 452 | WARN_ON(in_irq()); |
453 | skb->destructor(skb); | 453 | skb->destructor(skb); |
454 | } | 454 | } |
455 | #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE) | 455 | #if IS_ENABLED(CONFIG_NF_CONNTRACK) |
456 | nf_conntrack_put(skb->nfct); | 456 | nf_conntrack_put(skb->nfct); |
457 | #endif | 457 | #endif |
458 | #ifdef NET_SKBUFF_NF_DEFRAG_NEEDED | 458 | #ifdef NET_SKBUFF_NF_DEFRAG_NEEDED |
@@ -602,15 +602,14 @@ static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old) | |||
602 | new->ip_summed = old->ip_summed; | 602 | new->ip_summed = old->ip_summed; |
603 | skb_copy_queue_mapping(new, old); | 603 | skb_copy_queue_mapping(new, old); |
604 | new->priority = old->priority; | 604 | new->priority = old->priority; |
605 | #if defined(CONFIG_IP_VS) || defined(CONFIG_IP_VS_MODULE) | 605 | #if IS_ENABLED(CONFIG_IP_VS) |
606 | new->ipvs_property = old->ipvs_property; | 606 | new->ipvs_property = old->ipvs_property; |
607 | #endif | 607 | #endif |
608 | new->protocol = old->protocol; | 608 | new->protocol = old->protocol; |
609 | new->mark = old->mark; | 609 | new->mark = old->mark; |
610 | new->skb_iif = old->skb_iif; | 610 | new->skb_iif = old->skb_iif; |
611 | __nf_copy(new, old); | 611 | __nf_copy(new, old); |
612 | #if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \ | 612 | #if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE) |
613 | defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE) | ||
614 | new->nf_trace = old->nf_trace; | 613 | new->nf_trace = old->nf_trace; |
615 | #endif | 614 | #endif |
616 | #ifdef CONFIG_NET_SCHED | 615 | #ifdef CONFIG_NET_SCHED |