Commit 795a6d6b authored by Pablo Neira Ayuso's avatar Pablo Neira Ayuso
Browse files

netfilter: nf_tables: statify nft_expr_init()



Not exposed anymore to modules, statify this function.

Signed-off-by: default avatarPablo Neira Ayuso <pablo@netfilter.org>
parent a7fc9368
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -846,8 +846,6 @@ static inline void *nft_expr_priv(const struct nft_expr *expr)
	return (void *)expr->data;
}

struct nft_expr *nft_expr_init(const struct nft_ctx *ctx,
			       const struct nlattr *nla);
void nft_expr_destroy(const struct nft_ctx *ctx, struct nft_expr *expr);
int nft_expr_dump(struct sk_buff *skb, unsigned int attr,
		  const struct nft_expr *expr);
+2 −2
Original line number Diff line number Diff line
@@ -2523,7 +2523,7 @@ static void nf_tables_expr_destroy(const struct nft_ctx *ctx,
	module_put(type->owner);
}

struct nft_expr *nft_expr_init(const struct nft_ctx *ctx,
static struct nft_expr *nft_expr_init(const struct nft_ctx *ctx,
				      const struct nlattr *nla)
{
	struct nft_expr_info info;