lkml.org 
[lkml]   [2017]   [Sep]   [5]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Date
SubjectRe: [PATCH] radix-tree: must check __radix_tree_preload() return value
On Tue, Sep 5, 2017 at 10:59 AM, Eric Dumazet <eric.dumazet@gmail.com> wrote:
> @@ -2104,7 +2104,10 @@ EXPORT_SYMBOL(radix_tree_tagged);
> */
> void idr_preload(gfp_t gfp_mask)
> {
> - __radix_tree_preload(gfp_mask, IDR_PRELOAD_SIZE);
> + int ret = __radix_tree_preload(gfp_mask, IDR_PRELOAD_SIZE);
> +
> + if (ret)
> + preempt_disable();
> }
> EXPORT_SYMBOL(idr_preload);

Is there a reason for the "ret" variable that is entirely mis-named,
since it's never actually used as a return value?

(Sure. it's the return value of a function, but that is entirely
useless and pointless information, and adds no value. We should name
variables by the data they contain or how they are used, not by "it
was the return value of a function").

In other words, why isn't this just

if (__radix_tree_preload(..))
preempt_disable();

which is shorter and clearer and not confusing?

> @@ -2118,13 +2121,14 @@ EXPORT_SYMBOL(idr_preload);
> */
> int ida_pre_get(struct ida *ida, gfp_t gfp)
> {
> - __radix_tree_preload(gfp, IDA_PRELOAD_SIZE);
> + int ret = __radix_tree_preload(gfp, IDA_PRELOAD_SIZE);
> /*
> * The IDA API has no preload_end() equivalent. Instead,
> * ida_get_new() can return -EAGAIN, prompting the caller
> * to return to the ida_pre_get() step.
> */
> - preempt_enable();
> + if (!ret)
> + preempt_enable();

Same issue, but this time strengthened by an additional "why doesn't
this just use that idr_preload function then?" question..

Linus

\
 
 \ /
  Last update: 2017-09-05 20:08    [W:0.044 / U:0.072 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site