Re: [PATCH net-next v6 08/12] net: vxlan: use kfree_skb_reason() in vxlan_xmit()

From: Menglong Dong
Date: Wed Oct 09 2024 - 22:05:45 EST


On Wed, Oct 9, 2024 at 10:29 AM Jason Xing <kerneljasonxing@xxxxxxxxx> wrote:
>
> On Wed, Oct 9, 2024 at 9:37 AM Menglong Dong <menglong8.dong@xxxxxxxxx> wrote:
> >
> > On Wed, Oct 9, 2024 at 2:05 AM Guillaume Nault <gnault@xxxxxxxxxx> wrote:
> > >
> > > On Tue, Oct 08, 2024 at 10:22:56PM +0800, Menglong Dong wrote:
> > > > Replace kfree_skb() with kfree_skb_reason() in vxlan_xmit(). Following
> > > > new skb drop reasons are introduced for vxlan:
> > > >
> > > > /* no remote found for xmit */
> > > > SKB_DROP_REASON_VXLAN_NO_REMOTE
> > > > /* packet without necessary metadata reached a device which is in
> > > > * "eternal" mode
> > >
> > > That should be "external" mode (with an "x").
> > >
> > > > + /**
> > > > + * @SKB_DROP_REASON_TUNNEL_TXINFO: packet without necessary metadata
> > > > + * reached a device which is in "eternal" mode.
> > >
> > > Here too.
> > >
> >
> > Oh, my eyes!
> >
> > I checked this document one by one, and I'm sure there
> > are no more typos besides this one.
> >
>
> You can try "codespell xxx.patch" to avoid typos easily before
> submitting patches.

That's a good idea! Thank you, xing~