linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [devm_kfree() usage] When should devm_kfree() be used?
@ 2019-05-25  2:03 Gen Zhang
  2019-06-05  6:27 ` Jiri Slaby
  0 siblings, 1 reply; 2+ messages in thread
From: Gen Zhang @ 2019-05-25  2:03 UTC (permalink / raw)
  To: rafael, gregkh; +Cc: jonathanh, linux-kernel

devm_kmalloc() is used to allocate memory for a driver dev. Comments
above the definition and doc 
(https://www.kernel.org/doc/Documentation/driver-model/devres.txt) all
imply that allocated the memory is automatically freed on driver attach,
no matter allocation fail or not. However, I examined the code, and
there are many sites that devm_kfree() is used to free devm_kmalloc().
e.g. hisi_sas_debugfs_init() in drivers/scsi/hisi_sas/hisi_sas_main.c.
So I am totally confused about this issue. Can anybody give me some
guidance? When should we use devm_kfree()?

Thanks
Gen

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [devm_kfree() usage] When should devm_kfree() be used?
  2019-05-25  2:03 [devm_kfree() usage] When should devm_kfree() be used? Gen Zhang
@ 2019-06-05  6:27 ` Jiri Slaby
  0 siblings, 0 replies; 2+ messages in thread
From: Jiri Slaby @ 2019-06-05  6:27 UTC (permalink / raw)
  To: Gen Zhang, rafael, gregkh; +Cc: jonathanh, linux-kernel, luojiaxing

On 25. 05. 19, 4:03, Gen Zhang wrote:
> devm_kmalloc() is used to allocate memory for a driver dev. Comments
> above the definition and doc 
> (https://www.kernel.org/doc/Documentation/driver-model/devres.txt) all
> imply that allocated the memory is automatically freed on driver attach,
> no matter allocation fail or not. However, I examined the code, and
> there are many sites that devm_kfree() is used to free devm_kmalloc().
> e.g. hisi_sas_debugfs_init() in drivers/scsi/hisi_sas/hisi_sas_main.c.

The guy who added the code in:
commit eb1c2b72b7694c984d520300c901f5fc1fa8ea9e
Author: Luo Jiaxing <luojiaxing@huawei.com>
Date:   Wed Dec 19 23:56:40 2018 +0800

    scsi: hisi_sas: Alloc debugfs snapshot buffer memory for all registers

seems to be as confused as you are.

> So I am totally confused about this issue. Can anybody give me some
> guidance? When should we use devm_kfree()?

Whenever you want to free the memory earlier than on ->remove or failed
->probe. For whatever reason.

thanks,
-- 
js
suse labs

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-06-05  6:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-25  2:03 [devm_kfree() usage] When should devm_kfree() be used? Gen Zhang
2019-06-05  6:27 ` Jiri Slaby

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).