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
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
>__
These are bogus reports I think.
Johannes's changes depends upon the wireless GIT tree I pulled in
right before I applied his patch.
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
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
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;
> @@
>
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