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


Groups > linux.kernel > #1292095

Re: [PATCH] lightnvm: add check after mempool allocation

From Matias Bjørling <m@bjorling.me>
Newsgroups linux.kernel
Subject Re: [PATCH] lightnvm: add check after mempool allocation
Date 2015-12-15 13:20 +0100
Message-ID <qFWKe-3YP-3@gated-at.bofh.it> (permalink)
References <qFWAz-3Su-31@gated-at.bofh.it>
Organization Paletta

Show all headers | View raw


On 12/15/2015 01:06 PM, Javier Gonzalez wrote:
> Add missing check after mempool allocation.
>
> Signed-off-by: Javier Gonzalez <javier@cnexlabs.com>
> ---
>   drivers/lightnvm/rrpc.c | 2 ++
>   1 file changed, 2 insertions(+)
>
> diff --git a/drivers/lightnvm/rrpc.c b/drivers/lightnvm/rrpc.c
> index a1e7488..f4bc986 100644
> --- a/drivers/lightnvm/rrpc.c
> +++ b/drivers/lightnvm/rrpc.c
> @@ -287,6 +287,8 @@ static int rrpc_move_valid_pages(struct rrpc *rrpc, struct rrpc_block *rblk)
>   	}
>
>   	page = mempool_alloc(rrpc->page_pool, GFP_NOIO);
> +	if (!page)
> +		return -ENOMEM;
>
>   	while ((slot = find_first_zero_bit(rblk->invalid_pages,
>   					    nr_pgs_per_blk)) < nr_pgs_per_blk) {
>
Thanks Javier, applied for 4.5.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

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


Thread

[PATCH] lightnvm: add check after mempool allocation Javier Gonzalez <javier@javigon.com> - 2015-12-15 13:10 +0100
  Re: [PATCH] lightnvm: add check after mempool allocation Matias Bjørling <m@bjorling.me> - 2015-12-15 13:20 +0100

csiph-web