Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1737280

Re: [PATCH 2/6] lightnvm: pblk: protect line bitmap while submitting meta io

From Javier González <jg@lightnvm.io>
Newsgroups linux.kernel
Subject Re: [PATCH 2/6] lightnvm: pblk: protect line bitmap while submitting meta io
Date 2017-09-22 10:50 +0200
Message-ID <usrON-3W2-1@gated-at.bofh.it> (permalink)
References <us7Q8-kv-67@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


[Multipart message — attachments visible in raw view] - view raw

> On 21 Sep 2017, at 13.26, Rakesh Pandit <rakesh@tuxera.com> wrote:
> 
> It seems pblk_dealloc_page would race against pblk_alloc_pages for
> line bitmap for sector allocation.  The chances are very low but might
> as well protect the bitmap properly.  It's not even in fast path.
> 
> Signed-off-by: Rakesh Pandit <rakesh@tuxera.com>
> ---
> drivers/lightnvm/pblk-core.c | 2 ++
> 1 file changed, 2 insertions(+)
> 
> diff --git a/drivers/lightnvm/pblk-core.c b/drivers/lightnvm/pblk-core.c
> index a230125..b92eabc 100644
> --- a/drivers/lightnvm/pblk-core.c
> +++ b/drivers/lightnvm/pblk-core.c
> @@ -502,12 +502,14 @@ void pblk_dealloc_page(struct pblk *pblk, struct pblk_line *line, int nr_secs)
> 	u64 addr;
> 	int i;
> 
> +	spin_lock(&line->lock);
> 	addr = find_next_zero_bit(line->map_bitmap,
> 					pblk->lm.sec_per_line, line->cur_sec);
> 	line->cur_sec = addr - nr_secs;
> 
> 	for (i = 0; i < nr_secs; i++, line->cur_sec--)
> 		WARN_ON(!test_and_clear_bit(line->cur_sec, line->map_bitmap));
> +	spin_lock(&line->lock);
> }
> 
> u64 __pblk_alloc_page(struct pblk *pblk, struct pblk_line *line, int nr_secs)
> --
> 2.5.0

Looks good. The reason not to have locks here was that the caller is
always on the write thread - who did the allocation -, since it is error
handling. So there is no protection needed. In any case, it is better to
have it since it is implemented as a helper function.


Reviewed-by: Javier González <javier@cnexlabs.com>

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH 2/6] lightnvm: pblk: protect line bitmap while submitting  meta io Rakesh Pandit <rakesh@tuxera.com> - 2017-09-21 13:30 +0200
  Re: [PATCH 2/6] lightnvm: pblk: protect line bitmap while submitting  meta io Javier González <jg@lightnvm.io> - 2017-09-22 10:50 +0200
    Re: [PATCH 2/6] lightnvm: pblk: protect line bitmap while submitting  meta io Matias Bjørling <mb@lightnvm.io> - 2017-09-25 12:20 +0200

csiph-web