[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <5163B9A8.2030306@hartkopp.net>
Date: Tue, 09 Apr 2013 08:48:08 +0200
From: Oliver Hartkopp <socketcan@...tkopp.net>
To: Wei Yongjun <weiyj.lk@...il.com>, davem@...emloft.net
CC: yongjun_wei@...ndmicro.com.cn, linux-can@...r.kernel.org,
netdev@...r.kernel.org
Subject: Re: [PATCH] can: gw: use kmem_cache_free() instead of kfree()
On 09.04.2013 08:16, Wei Yongjun wrote:
> From: Wei Yongjun <yongjun_wei@...ndmicro.com.cn>
>
> memory allocated by kmem_cache_alloc() should be freed using
> kmem_cache_free(), not kfree().
>
> Signed-off-by: Wei Yongjun <yongjun_wei@...ndmicro.com.cn>
Oh yes, that's right ...
Acked-by: Oliver Hartkopp <socketcan@...tkopp.net>
Is also a stable candidate for Linux 3.2+ (can-gw emerged in 3.2)
Thanks for catching this!
Best regards,
Oliver
> ---
> net/can/gw.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/net/can/gw.c b/net/can/gw.c
> index 2d117dc..117814a 100644
> --- a/net/can/gw.c
> +++ b/net/can/gw.c
> @@ -466,7 +466,7 @@ static int cgw_notifier(struct notifier_block *nb,
> if (gwj->src.dev == dev || gwj->dst.dev == dev) {
> hlist_del(&gwj->list);
> cgw_unregister_filter(gwj);
> - kfree(gwj);
> + kmem_cache_free(cgw_cache, gwj);
> }
> }
> }
> @@ -864,7 +864,7 @@ static void cgw_remove_all_jobs(void)
> hlist_for_each_entry_safe(gwj, nx, &cgw_list, list) {
> hlist_del(&gwj->list);
> cgw_unregister_filter(gwj);
> - kfree(gwj);
> + kmem_cache_free(cgw_cache, gwj);
> }
> }
>
> @@ -920,7 +920,7 @@ static int cgw_remove_job(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
>
> hlist_del(&gwj->list);
> cgw_unregister_filter(gwj);
> - kfree(gwj);
> + kmem_cache_free(cgw_cache, gwj);
> err = 0;
> break;
> }
>
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@...r.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists