Tarantool development patches archive
 help / color / mirror / Atom feed
From: "Ilya Kosarev" <i.kosarev@tarantool.org>
To: "Vladislav Shpilevoy" <v.shpilevoy@tarantool.org>
Cc: tarantool-patches@dev.tarantool.org
Subject: Re: [Tarantool-patches] [PATCH v2 1/2] b-tree: return NULL on matras_alloc fail
Date: Mon, 20 Jan 2020 21:13:33 +0300	[thread overview]
Message-ID: <1579544013.449763984@f502.i.mail.ru> (raw)
In-Reply-To: <fa048848-69b4-4793-c958-75e835ade294@tarantool.org>

[-- Attachment #1: Type: text/plain, Size: 1289 bytes --]


Hi!
 
Thanks for the review. Remarks fixed in v3.
 
>Среда, 15 января 2020, 0:00 +03:00 от Vladislav Shpilevoy < v.shpilevoy@tarantool.org >:
>  
>Hi! Thanks for the patch!
>
>On 13/01/2020 22:31, Ilya Kosarev wrote:
>> In bps_tree_create_leaf we use matras_alloc in case
>> bps_tree_garbage_pop didn't work out. However it also might not
>> succeed. Then we need to return NULL instead of dereferencing NULL
>> pointer.
>>
>> Part of: #3807
>
>Please, drop ':', we don't use it when reference tickets.
>
>> ---
>> src/lib/salad/bps_tree.h | 7 +++++--
>> 1 file changed, 5 insertions(+), 2 deletions(-)
>>
>> diff --git a/src/lib/salad/bps_tree.h b/src/lib/salad/bps_tree.h
>> index d28b53f53..ede2a3b7f 100644
>> --- a/src/lib/salad/bps_tree.h
>> +++ b/src/lib/salad/bps_tree.h
>> @@ -2147,8 +2147,11 @@ bps_tree_create_leaf(struct bps_tree *tree, bps_tree_block_id_t *id)
>> {
>> struct bps_leaf *res = (struct bps_leaf *)
>> bps_tree_garbage_pop(tree, id);
>> - if (!res)
>> - res = (struct bps_leaf *)matras_alloc(&tree->matras, id);
>> + if (!res) {
>> + res = (struct bps_leaf *) matras_alloc(&tree->matras, id);
>> + if (!res)
>> + return NULL;
>> + }
>
>Since you've changed this code anyway, lets use explicit
>'== NULL' instead of '!'. 
 
 
--
Ilya Kosarev
 

[-- Attachment #2: Type: text/html, Size: 2584 bytes --]

  reply	other threads:[~2020-01-20 18:13 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-13 21:31 [Tarantool-patches] [PATCH v2 0/2] Safe truncation and deletion Ilya Kosarev
2020-01-13 21:31 ` [Tarantool-patches] [PATCH v2 1/2] b-tree: return NULL on matras_alloc fail Ilya Kosarev
2020-01-14 21:00   ` Vladislav Shpilevoy
2020-01-20 18:13     ` Ilya Kosarev [this message]
2020-01-13 21:31 ` [Tarantool-patches] [PATCH v2 2/2] memtx: increase the memory quota if needed to truncate or delete Ilya Kosarev
2020-01-14 21:00   ` Vladislav Shpilevoy
2020-01-20 18:13     ` Ilya Kosarev
2020-01-24 11:21     ` Konstantin Osipov
  -- strict thread matches above, loose matches on Subject: below --
2020-01-10  0:36 [Tarantool-patches] [PATCH v2 0/2] Safe truncation and deletion Ilya Kosarev
2020-01-10  0:36 ` [Tarantool-patches] [PATCH v2 1/2] b-tree: return NULL on matras_alloc fail Ilya Kosarev

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1579544013.449763984@f502.i.mail.ru \
    --to=i.kosarev@tarantool.org \
    --cc=tarantool-patches@dev.tarantool.org \
    --cc=v.shpilevoy@tarantool.org \
    --subject='Re: [Tarantool-patches] [PATCH v2 1/2] b-tree: return NULL on matras_alloc fail' \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox