From: Greg KH <gregkh@linuxfoundation.org>
To: Sven Eckelmann <sven@narfation.org>
Cc: linus.luessing@c0d3.blue, a@unstable.cc,
mareklindner@neomailbox.ch, stable@vger.kernel.org,
stable-commits@vger.kernel.org
Subject: Re: Patch "batman-adv: Fix broadcast/ogm queue limit on a removed interface" has been added to the 3.14-stable tree
Date: Sat, 7 May 2016 21:54:05 +0200 [thread overview]
Message-ID: <20160507195405.GA4376@kroah.com> (raw)
In-Reply-To: <20160507044012.GC28252@kroah.com>
On Sat, May 07, 2016 at 12:40:12AM -0400, Greg KH wrote:
> On Fri, May 06, 2016 at 10:03:50PM +0200, Sven Eckelmann wrote:
> > On Friday 06 May 2016 14:36:56 gregkh@linuxfoundation.org wrote:
> > [...]
> > > The filename of the patch is:
> > > batman-adv-fix-broadcast-ogm-queue-limit-on-a-removed-interface.patch
> > > and it can be found in the queue-3.14 subdirectory.
> > [...]
> > > --- a/net/batman-adv/send.c
> > > +++ b/net/batman-adv/send.c
> > > @@ -637,6 +637,12 @@ batadv_purge_outstanding_packets(struct
> > >
> > > if (pending) {
> > > hlist_del(&forw_packet->list);
> > > + if (!forw_packet->own)
> > > + atomic_inc(&bat_priv->bcast_queue_left);
> > > +
> > > + if (!forw_packet->own)
> > > + atomic_inc(&bat_priv->batman_queue_left);
> > > +
> > > batadv_forw_packet_free(forw_packet);
> > > }
> > > }
> > >
> >
> > This looks odd. Why is this commit doing the inc twice in the same place?
> > Looks different than the origin patch (which does it for two different
> > places):
> >
> > https://patchwork.open-mesh.org/patch/15974/
> >
> > Same for the 4.4 and 4.5 stable changes. I've cherry-picked the commit for
> > 3.14 and my results look like this (not even compile tested):
> >
> > --- a/net/batman-adv/send.c
> > +++ b/net/batman-adv/send.c
> > @@ -610,6 +610,9 @@ batadv_purge_outstanding_packets(struct batadv_priv
> > *bat_priv,
> >
> > if (pending) {
> > hlist_del(&forw_packet->list);
> > + if (!forw_packet->own)
> > + atomic_inc(&bat_priv->bcast_queue_left);
> > +
> > batadv_forw_packet_free(forw_packet);
> > }
> > }
> > @@ -637,6 +640,9 @@ batadv_purge_outstanding_packets(struct batadv_priv
> > *bat_priv,
> >
> > if (pending) {
> > hlist_del(&forw_packet->list);
> > + if (!forw_packet->own)
> > + atomic_inc(&bat_priv->batman_queue_left);
> > +
> > batadv_forw_packet_free(forw_packet);
> > }
> > }
> >
>
> Oh that's really odd, thanks for letting me know. Let me try to figure
> out what went wrong...
This looks like a bug in patch. Git creates the correct patch, but when
patch imports it, it messes it up and creates the version you saw.
I hand edited the file after it was patched to fix this up.
If I get a chance I'll go file a bug with the patch developers.
thanks,
greg k-h
prev parent reply other threads:[~2016-05-07 19:54 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-05-06 18:36 Patch "batman-adv: Fix broadcast/ogm queue limit on a removed interface" has been added to the 3.14-stable tree gregkh
2016-05-06 20:03 ` Sven Eckelmann
2016-05-07 4:40 ` Greg KH
2016-05-07 19:54 ` Greg KH [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160507195405.GA4376@kroah.com \
--to=gregkh@linuxfoundation.org \
--cc=a@unstable.cc \
--cc=linus.luessing@c0d3.blue \
--cc=mareklindner@neomailbox.ch \
--cc=stable-commits@vger.kernel.org \
--cc=stable@vger.kernel.org \
--cc=sven@narfation.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).