Commit f7e840ee authored by Colin Ian King's avatar Colin Ian King Committed by Pablo Neira Ayuso

netfilter: nf_tables: remove unused parameter ctx

Function nf_tables_set_desc_parse parameter ctx is not being used
so remove it as it is redundant.
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarPablo Neira Ayuso <pablo@netfilter.org>
parent 3b15d09f
...@@ -3436,8 +3436,7 @@ static int nf_tables_getset(struct net *net, struct sock *nlsk, ...@@ -3436,8 +3436,7 @@ static int nf_tables_getset(struct net *net, struct sock *nlsk,
return err; return err;
} }
static int nf_tables_set_desc_parse(const struct nft_ctx *ctx, static int nf_tables_set_desc_parse(struct nft_set_desc *desc,
struct nft_set_desc *desc,
const struct nlattr *nla) const struct nlattr *nla)
{ {
struct nlattr *da[NFTA_SET_DESC_MAX + 1]; struct nlattr *da[NFTA_SET_DESC_MAX + 1];
...@@ -3563,7 +3562,7 @@ static int nf_tables_newset(struct net *net, struct sock *nlsk, ...@@ -3563,7 +3562,7 @@ static int nf_tables_newset(struct net *net, struct sock *nlsk,
policy = ntohl(nla_get_be32(nla[NFTA_SET_POLICY])); policy = ntohl(nla_get_be32(nla[NFTA_SET_POLICY]));
if (nla[NFTA_SET_DESC] != NULL) { if (nla[NFTA_SET_DESC] != NULL) {
err = nf_tables_set_desc_parse(&ctx, &desc, nla[NFTA_SET_DESC]); err = nf_tables_set_desc_parse(&desc, nla[NFTA_SET_DESC]);
if (err < 0) if (err < 0)
return err; return err;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment