[firefly] [PATCH] s390: use kcalloc instead of kmalloc and memset

Daniel Baluta daniel.baluta at gmail.com
Mon Mar 11 18:12:50 EET 2013


On Mon, Mar 11, 2013 at 5:58 PM,  <steliannirlu at gmail.com> wrote:
> From: Stelian Nirlu <steliannirlu at gmail.com>
>
> Signed-off-by: Stelian Nirlu <steliannirlu at gmail.com>
> ---
>  arch/s390/net/bpf_jit_comp.c |    3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/arch/s390/net/bpf_jit_comp.c b/arch/s390/net/bpf_jit_comp.c
> index 0972e91..82f165f 100644
> --- a/arch/s390/net/bpf_jit_comp.c
> +++ b/arch/s390/net/bpf_jit_comp.c
> @@ -747,10 +747,9 @@ void bpf_jit_compile(struct sk_filter *fp)
>
>         if (!bpf_jit_enable)
>                 return;
> -       addrs = kmalloc(fp->len * sizeof(*addrs), GFP_KERNEL);
> +       addrs = kcalloc(fp->len, sizeof(*addrs), GFP_KERNEL);
>         if (addrs == NULL)
>                 return;
> -       memset(addrs, 0, fp->len * sizeof(*addrs));
>         memset(&jit, 0, sizeof(cjit));
>         memset(&cjit, 0, sizeof(cjit));
>
> --
> 1.7.9.5
>
Subject tag should [PATCH v2]. You can manually edit .patch file for
this, before sending.
Also, don't forget to add Pekka Enberg to Cc list.

thanks,
Daniel.


More information about the firefly mailing list