Commit c7232c9979cba ("netfilter: add protocol independent NAT core") added nf_nat_core.c based on ipv4/netfilter/nf_nat_core.c, with this comment copied. Referred function doesn't exist anymore, and anyway since day one of this file it should have referred the generic __nf_conntrack_confirm(), added in 9fb9cbb1082d6. Signed-off-by: Yonatan Goldschmidt <yon.goldschmidt@xxxxxxxxx> --- net/netfilter/nf_nat_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/netfilter/nf_nat_core.c b/net/netfilter/nf_nat_core.c index 9ab410455992..3f6023ed4966 100644 --- a/net/netfilter/nf_nat_core.c +++ b/net/netfilter/nf_nat_core.c @@ -519,7 +519,7 @@ static void nf_nat_l4proto_unique_tuple(struct nf_conntrack_tuple *tuple, * and NF_INET_LOCAL_OUT, we change the destination to map into the * range. It might not be possible to get a unique tuple, but we try. * At worst (or if we race), we will end up with a final duplicate in - * __ip_conntrack_confirm and drop the packet. */ + * __nf_conntrack_confirm and drop the packet. */ static void get_unique_tuple(struct nf_conntrack_tuple *tuple, const struct nf_conntrack_tuple *orig_tuple, ---