Re: [kbuild-all] [PATCH net-next] networking: use skb_put_zero()

2017-06-16 Thread Johannes Berg
On Fri, 2017-06-16 at 16:30 +0800, Ye Xiaolong wrote: > Hi, David > > On 06/13, David Miller wrote: > > > > These are bogus reports I think. > > > > Johannes's changes depends upon the wireless GIT tree I pulled in > > right before I applied his patch. > > Did you applied the patch on top of ma

Re: [kbuild-all] [PATCH net-next] networking: use skb_put_zero()

2017-06-16 Thread Ye Xiaolong
Hi, David On 06/13, David Miller wrote: > >These are bogus reports I think. > >Johannes's changes depends upon the wireless GIT tree I pulled in >right before I applied his patch. Did you applied the patch on top of master branch? Thanks, Xiaolong >__

Re: [PATCH net-next] networking: use skb_put_zero()

2017-06-13 Thread David Miller
These are bogus reports I think. Johannes's changes depends upon the wireless GIT tree I pulled in right before I applied his patch.

Re: [PATCH net-next] networking: use skb_put_zero()

2017-06-13 Thread kbuild test robot
Hi Johannes, [auto build test ERROR on net-next/master] url: https://github.com/0day-ci/linux/commits/Johannes-Berg/networking-use-skb_put_zero/20170614-035553 config: x86_64-randconfig-x010-201724 (attached as .config) compiler: gcc-6 (Debian 6.2.0-3) 6.2.0 20160901 reproduce: # save

Re: [PATCH net-next] networking: use skb_put_zero()

2017-06-13 Thread kbuild test robot
Hi Johannes, [auto build test ERROR on net-next/master] url: https://github.com/0day-ci/linux/commits/Johannes-Berg/networking-use-skb_put_zero/20170614-035553 config: x86_64-randconfig-x019-201724 (attached as .config) compiler: gcc-6 (Debian 6.2.0-3) 6.2.0 20160901 reproduce: # save

Re: [PATCH net-next] networking: use skb_put_zero()

2017-06-13 Thread David Miller
From: Johannes Berg Date: Tue, 13 Jun 2017 14:28:18 +0200 > From: Johannes Berg > > Use the recently introduced helper to replace the pattern of > skb_put() && memset(), this transformation was done with the > following spatch: > > @@ > identifier p; > expression len; > expression skb; > @@ >

[PATCH net-next] networking: use skb_put_zero()

2017-06-13 Thread Johannes Berg
From: Johannes Berg Use the recently introduced helper to replace the pattern of skb_put() && memset(), this transformation was done with the following spatch: @@ identifier p; expression len; expression skb; @@ -p = skb_put(skb, len); -memset(p, 0, len); +p = skb_put_zero(skb, len); Signed-off