[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1497527887.2518.6.camel@sipsolutions.net>
Date: Thu, 15 Jun 2017 13:58:07 +0200
From: Johannes Berg <johannes@...solutions.net>
To: YUAN Linyu <Linyu.Yuan@...atel-sbell.com.cn>,
"netdev@...r.kernel.org" <netdev@...r.kernel.org>
Subject: Re: [RFC v2] networking: convert many more places to skb_put_zero()
On Thu, 2017-06-15 at 09:54 +0000, YUAN Linyu wrote:
> > -----Original Message-----
> > From: netdev-owner@...r.kernel.org [mailto:netdev-owner@...r.kernel
> > .org]
> > On Behalf Of Johannes Berg
> > Sent: Thursday, June 15, 2017 5:28 PM
> > To: netdev@...r.kernel.org
> > Cc: Johannes Berg
> > Subject: [RFC v2] networking: convert many more places to
> > skb_put_zero()
> >
> > From: Johannes Berg <johannes.berg@...el.com>
> > diff --git a/net/sctp/sm_make_chunk.c b/net/sctp/sm_make_chunk.c
> > index ea2601501654..aaac2660aaf7 100644
> > --- a/net/sctp/sm_make_chunk.c
> > +++ b/net/sctp/sm_make_chunk.c
> > @@ -1478,10 +1478,9 @@ void *sctp_addto_chunk(struct sctp_chunk
> > *chunk,
> > int len, const void *data)
> > int chunklen = ntohs(chunk->chunk_hdr->length);
> > int padlen = SCTP_PAD4(chunklen) - chunklen;
> >
> > - padding = skb_put(chunk->skb, padlen);
> > + padding = skb_put_zero(chunk->skb, padlen);
>
> "padding" will become unused.
> I know this place when I check.
Yeah, I figured that would happen. I could try to make the spatch catch
that too, but I'm not sure I can figure out how to :)
johannes
Powered by blists - more mailing lists