Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1743153
| From | Javier González <jg@lightnvm.io> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH 5/6] lightnvm: pblk: free up mempool allocation for erases correctly |
| Date | 2017-10-02 14:10 +0200 |
| Message-ID | <uw7HQ-77O-27@gated-at.bofh.it> (permalink) |
| References | <uvMtI-2Hh-27@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
[Multipart message — attachments visible in raw view] - view raw
> On 1 Oct 2017, at 15.25, Rakesh Pandit <rakesh@tuxera.com> wrote:
>
> While separating read and erase mempools in 22da65a1b pblk_g_rq_cache
> was used two times to set aside memory both for erase and read
> requests. Because same kmem cache is used repeatedly a single call to
> kmem_cache_destroy wouldn't deallocate everything. Repeatedly doing
> loading and unloading of pblk modules would eventually result in some
> leak.
>
> The fix is to really use separate kmem cache and track it
> appropriately.
>
> Fixes: 22da65a1b ("lightnvm: pblk: decouple read/erase mempools")
> Signed-off-by: Rakesh Pandit <rakesh@tuxera.com>
>
I'm not sure I follow this logic. I assume that you're thinking of the
refcount on kmem_cache. During cache creation, all is good; if a
different cache creation fails, destruction is guaranteed, since the
refcount is 0. On tear down (pblk_core_free), we destroy the mempools
associated to the caches. In this case, the refcount goes to 0 too, as
we destroy the 2 mempools. So I don't see where the leak can happen. Am
I missing something?
In any case, Jens reported some bugs on the mempools, where we did not
guarantee forward progress. Here you can find the original discussion
and the mempool audit [1]. Would be good if you reviewed these.
[1] https://www.spinics.net/lists/kernel/msg2602274.html
Thanks,
Javier
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH 5/6] lightnvm: pblk: free up mempool allocation for erases correctly Rakesh Pandit <rakesh@tuxera.com> - 2017-10-01 15:30 +0200
Re: [PATCH 5/6] lightnvm: pblk: free up mempool allocation for erases correctly Javier González <jg@lightnvm.io> - 2017-10-02 14:10 +0200
Re: [PATCH 5/6] lightnvm: pblk: free up mempool allocation for erases correctly Rakesh Pandit <rakesh@tuxera.com> - 2017-10-02 14:30 +0200
Re: [PATCH 5/6] lightnvm: pblk: free up mempool allocation for erases correctly Rakesh Pandit <rakesh@tuxera.com> - 2017-10-02 22:50 +0200
csiph-web