Re: [PATCH v2 2/2] btrfs-progs: Fix up memory leakage
From: David Sterba <hidden>
Date: 2012-09-25 10:14:44
Also in:
lkml
From: David Sterba <hidden>
Date: 2012-09-25 10:14:44
Also in:
lkml
On Tue, Sep 25, 2012 at 10:02:16AM +0800, zwu.kernel@gmail.com wrote:
From: Zhi Yong Wu <redacted> Some code pathes forget to free memory on exit.
Same as with the fd's, kernel will free all memory for us at exit(). If there's lots of memory allocated, it may be even faster to leave the unallocation process to kernel as it will do it in one go, while the application would unnecessarily free it chunk by chunk. david