aboutsummaryrefslogtreecommitdiffstats
path: root/net/netfilter/nf_tables_api.c
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2016-12-05 23:35:48 +0100
committerPablo Neira Ayuso <pablo@netfilter.org>2016-12-07 13:22:51 +0100
commit1a37ef769d68d2719a9a418bd80fc42d19259b24 (patch)
treea39f0eaa91a4395af2a91c04644f920afe8dc9e5 /net/netfilter/nf_tables_api.c
parentnetfilter: nat: skip checksum on offload SCTP packets (diff)
downloadlinux-dev-1a37ef769d68d2719a9a418bd80fc42d19259b24.tar.xz
linux-dev-1a37ef769d68d2719a9a418bd80fc42d19259b24.zip
netfilter: nf_tables: constify struct nft_ctx * parameter in nft_trans_alloc()
Context is not modified by nft_trans_alloc(), so constify it. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net/netfilter/nf_tables_api.c')
-rw-r--r--net/netfilter/nf_tables_api.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/netfilter/nf_tables_api.c b/net/netfilter/nf_tables_api.c
index b04d4ee1d533..b42059795819 100644
--- a/net/netfilter/nf_tables_api.c
+++ b/net/netfilter/nf_tables_api.c
@@ -111,8 +111,8 @@ static void nft_ctx_init(struct nft_ctx *ctx,
ctx->seq = nlh->nlmsg_seq;
}
-static struct nft_trans *nft_trans_alloc(struct nft_ctx *ctx, int msg_type,
- u32 size)
+static struct nft_trans *nft_trans_alloc(const struct nft_ctx *ctx,
+ int msg_type, u32 size)
{
struct nft_trans *trans;