2012-08-08 06:03:37

by Venu Byravarasu

[permalink] [raw]
Subject: question on devm_kfree

As per comments related to devm_kzalloc, memory allocated using it is freed automatically.
However there is a function called devm_kfree, comment section of which says that it is used to free memory allocated using devm_kzalloc().
If memory allocated by devm_kzalloc is freed automatically, what's the need & significance of devm_kfree?

Thanks,
Venu


2012-08-08 06:28:08

by Lars-Peter Clausen

[permalink] [raw]
Subject: Re: question on devm_kfree

On 08/08/2012 07:56 AM, Venu Byravarasu wrote:
> As per comments related to devm_kzalloc, memory allocated using it is
> freed automatically.
> However there is a function called devm_kfree, comment section of which
> says that it is used to free memory allocated using devm_kzalloc().
> If memory allocated by devm_kzalloc is freed automatically, what's the
> need & significance of devm_kfree?
>
> Thanks,
> Venu
>

Hi,

Memory allocated with devm_kzalloc is freed at the end of the lifetime of the
device it is attached to. If you for some reason want to free allocated with
memory devm_kzalloc before that of the lifetime of the device can use devm_kfree.


- Lars

2012-08-08 06:38:18

by Venu Byravarasu

[permalink] [raw]
Subject: RE: question on devm_kfree

> -----Original Message-----
> From: Lars-Peter Clausen [mailto:[email protected]]
> Sent: Wednesday, August 08, 2012 12:00 PM
> To: Venu Byravarasu
> Cc: [email protected]
> Subject: Re: question on devm_kfree
>
> On 08/08/2012 07:56 AM, Venu Byravarasu wrote:
> > As per comments related to devm_kzalloc, memory allocated using it is
> > freed automatically.
> > However there is a function called devm_kfree, comment section of which
> > says that it is used to free memory allocated using devm_kzalloc().
> > If memory allocated by devm_kzalloc is freed automatically, what's the
> > need & significance of devm_kfree?
> >
> > Thanks,
> > Venu
> >
>
> Hi,
>
> Memory allocated with devm_kzalloc is freed at the end of the lifetime of the
> device it is attached to. If you for some reason want to free allocated with
> memory devm_kzalloc before that of the lifetime of the device can use
> devm_kfree.
>
>
> - Lars

Thanks Lars.