lkml.org 
[lkml]   [2021]   [Jun]   [8]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH] nvme-multipath: combine grpid and ANA state checks in nvme_parse_ana_log()
On Tue, Jun 08, 2021 at 12:13:36PM +0800, Wu Bo wrote:
> - if (WARN_ON_ONCE(desc->grpid == 0))
> + if (WARN_ON_ONCE(desc->grpid == 0 ||
> + le32_to_cpu(desc->grpid) > ctrl->anagrpmax))
> return -EINVAL;
> - if (WARN_ON_ONCE(le32_to_cpu(desc->grpid) > ctrl->anagrpmax))
> - return -EINVAL;
> - if (WARN_ON_ONCE(desc->state == 0))
> - return -EINVAL;
> - if (WARN_ON_ONCE(desc->state > NVME_ANA_CHANGE))
> + if (WARN_ON_ONCE(desc->state == 0 ||
> + desc->state > NVME_ANA_CHANGE))

So besides making the code impossibl to read due to the incorrect
indentation this also makes each WARN_ON_ONCE cover multiple conditions.
Not very useful for debugging.

\
 
 \ /
  Last update: 2021-06-08 07:24    [W:0.056 / U:0.088 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site