mirror of https://gitee.com/openkylin/linux.git
netfilter: use IS_ENABLE to replace if defined in TRACE target
Signed-off-by: Gao feng <gaofeng@cn.fujitsu.com> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
This commit is contained in:
parent
ac69269a45
commit
f016588861
|
@ -430,8 +430,7 @@ static void ip_copy_metadata(struct sk_buff *to, struct sk_buff *from)
|
||||||
to->tc_index = from->tc_index;
|
to->tc_index = from->tc_index;
|
||||||
#endif
|
#endif
|
||||||
nf_copy(to, from);
|
nf_copy(to, from);
|
||||||
#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
|
#if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE)
|
||||||
defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
|
|
||||||
to->nf_trace = from->nf_trace;
|
to->nf_trace = from->nf_trace;
|
||||||
#endif
|
#endif
|
||||||
#if defined(CONFIG_IP_VS) || defined(CONFIG_IP_VS_MODULE)
|
#if defined(CONFIG_IP_VS) || defined(CONFIG_IP_VS_MODULE)
|
||||||
|
|
|
@ -182,8 +182,7 @@ ipt_get_target_c(const struct ipt_entry *e)
|
||||||
return ipt_get_target((struct ipt_entry *)e);
|
return ipt_get_target((struct ipt_entry *)e);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
|
#if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE)
|
||||||
defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
|
|
||||||
static const char *const hooknames[] = {
|
static const char *const hooknames[] = {
|
||||||
[NF_INET_PRE_ROUTING] = "PREROUTING",
|
[NF_INET_PRE_ROUTING] = "PREROUTING",
|
||||||
[NF_INET_LOCAL_IN] = "INPUT",
|
[NF_INET_LOCAL_IN] = "INPUT",
|
||||||
|
@ -361,8 +360,7 @@ ipt_do_table(struct sk_buff *skb,
|
||||||
t = ipt_get_target(e);
|
t = ipt_get_target(e);
|
||||||
IP_NF_ASSERT(t->u.kernel.target);
|
IP_NF_ASSERT(t->u.kernel.target);
|
||||||
|
|
||||||
#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
|
#if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE)
|
||||||
defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
|
|
||||||
/* The packet is traced: log it */
|
/* The packet is traced: log it */
|
||||||
if (unlikely(skb->nf_trace))
|
if (unlikely(skb->nf_trace))
|
||||||
trace_packet(skb, hook, in, out,
|
trace_packet(skb, hook, in, out,
|
||||||
|
|
Loading…
Reference in New Issue