[PATCH] staging: erofs: fix Warning Use BUG_ON instead of if condition followed by BUG
Gao Xiang
hsiangkao at aol.com
Sun May 19 18:24:25 AEST 2019
Hi Hariprasad,
On 2019/5/19 上午1:33, Hariprasad Kelam wrote:
> fix below warning reported by coccicheck
>
> drivers/staging/erofs/unzip_pagevec.h:74:2-5: WARNING: Use BUG_ON
> instead of if condition followed by BUG.
>
> Signed-off-by: Hariprasad Kelam <hariprasad.kelam at gmail.com>
> ---
> drivers/staging/erofs/unzip_pagevec.h | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/drivers/staging/erofs/unzip_pagevec.h b/drivers/staging/erofs/unzip_pagevec.h
> index f37d8fd..0f61c54 100644
> --- a/drivers/staging/erofs/unzip_pagevec.h
> +++ b/drivers/staging/erofs/unzip_pagevec.h
> @@ -70,8 +70,7 @@ z_erofs_pagevec_ctor_next_page(struct z_erofs_pagevec_ctor *ctor,
> return tagptr_unfold_ptr(t);
> }
>
> - if (unlikely(nr >= ctor->nr))
> - BUG();
> + BUG_ON(nr >= ctor->nr);
Thanks for your report. I suggest to use DBG_BUGON for this case, let me
send another version for this case.
Thanks,
Gao Xiang
>
> return NULL;
> }
>
More information about the Linux-erofs
mailing list