diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2013-05-22 18:42:37 -0400 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2013-05-23 08:23:16 -0400 |
commit | de94c4591bd606729af1b913d6e98c6c449e42df (patch) | |
tree | 7c829fc4d72632b28c0927a3942c1ab6012b77c7 /net/bridge | |
parent | 6d11cfdba52af08b889fd6d3ee4212930493eb38 (diff) |
netfilter: {ipt,ebt}_ULOG: rise warning on deprecation
This target has been superseded by NFLOG. Spot a warning
so we prepare removal in a couple of years.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Acked-by: Gao feng <gaofeng@cn.fujitsu.com>
Diffstat (limited to 'net/bridge')
-rw-r--r-- | net/bridge/netfilter/ebt_ulog.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/net/bridge/netfilter/ebt_ulog.c b/net/bridge/netfilter/ebt_ulog.c index fc1905c51417..2ec6c19ff903 100644 --- a/net/bridge/netfilter/ebt_ulog.c +++ b/net/bridge/netfilter/ebt_ulog.c | |||
@@ -267,6 +267,12 @@ static int ebt_ulog_tg_check(const struct xt_tgchk_param *par) | |||
267 | { | 267 | { |
268 | struct ebt_ulog_info *uloginfo = par->targinfo; | 268 | struct ebt_ulog_info *uloginfo = par->targinfo; |
269 | 269 | ||
270 | if (!par->net->xt.ebt_ulog_warn_deprecated) { | ||
271 | pr_info("ebt_ulog is deprecated and it will be removed soon, " | ||
272 | "use ebt_nflog instead\n"); | ||
273 | par->net->xt.ebt_ulog_warn_deprecated = true; | ||
274 | } | ||
275 | |||
270 | if (uloginfo->nlgroup > 31) | 276 | if (uloginfo->nlgroup > 31) |
271 | return -EINVAL; | 277 | return -EINVAL; |
272 | 278 | ||