On 1/15/19 3:12 PM, Steven Rostedt wrote:
On Mon, 14 Jan 2019 22:34:08 -0600
"Gustavo A. R. Silva" wrote:
Replace kzalloc() function with its 2-factor argument form, kcalloc().
This patch replaces cases of:
kzalloc(a * b, gfp)
with:
kcalloc(a * b, gfp)
I think you meant
On Mon, 14 Jan 2019 22:34:08 -0600
"Gustavo A. R. Silva" wrote:
> Replace kzalloc() function with its 2-factor argument form, kcalloc().
>
> This patch replaces cases of:
>
> kzalloc(a * b, gfp)
>
> with:
> kcalloc(a * b, gfp)
I think you meant:
kcalloc(a, b, gfp)
-- Ste
Replace kzalloc() function with its 2-factor argument form, kcalloc().
This patch replaces cases of:
kzalloc(a * b, gfp)
with:
kcalloc(a * b, gfp)
This code was detected with the help of Coccinelle.
Signed-off-by: Gustavo A. R. Silva
---
kernel/trace/trace_probe.c | 4 ++--
1
3 matches
Mail list logo