On Sat, Dec 28, 2019 at 12:23:56PM +1100, Duncan Roe wrote: > Signed-off-by: Duncan Roe <duncan_roe@xxxxxxxxxxxxxxx> > --- > src/extra/tcp.c | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/src/extra/tcp.c b/src/extra/tcp.c > index 8119843..2296bef 100644 > --- a/src/extra/tcp.c > +++ b/src/extra/tcp.c > @@ -188,17 +188,17 @@ int nfq_tcp_snprintf(char *buf, size_t size, const struct tcphdr *tcph) > * \note This function recalculates the IPv4 and TCP checksums for you. > */ > EXPORT_SYMBOL > -int nfq_tcp_mangle_ipv4(struct pkt_buff *pkt, > +int nfq_tcp_mangle_ipv4(struct pkt_buff *pktb, Via git grep I can see more references to pkt instead pktb, if you prefer pktb for consistency that's fine indeed. I'd suggest you send a patch to update all the existing references in this tree to use pktb as you do here. Thanks.