[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20220624164552.3813986-1-james@openvpn.net>
Date: Fri, 24 Jun 2022 10:45:52 -0600
From: James Yonan <james@...nvpn.net>
To: netdev@...r.kernel.org
Cc: James Yonan <james@...nvpn.net>
Subject: [PATCH net-next] netfilter: nf_nat_initialized() doesn't modify struct nf_conn, so pointer should be declared const
This is helpful for code readability and makes it possible
to call nf_nat_initialized() with a const struct nf_conn *.
Signed-off-by: James Yonan <james@...nvpn.net>
---
include/net/netfilter/nf_nat.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/net/netfilter/nf_nat.h b/include/net/netfilter/nf_nat.h
index 987111ae5240..e9eb01e99d2f 100644
--- a/include/net/netfilter/nf_nat.h
+++ b/include/net/netfilter/nf_nat.h
@@ -104,7 +104,7 @@ unsigned int
nf_nat_inet_fn(void *priv, struct sk_buff *skb,
const struct nf_hook_state *state);
-static inline int nf_nat_initialized(struct nf_conn *ct,
+static inline int nf_nat_initialized(const struct nf_conn *ct,
enum nf_nat_manip_type manip)
{
if (manip == NF_NAT_MANIP_SRC)
--
2.25.1
Powered by blists - more mailing lists