Commit 800c16c8 authored by Hariprasad Kelam's avatar Hariprasad Kelam Committed by Greg Kroah-Hartman

staging: erofs: make use of DBG_BUGON

DBG_BUGON is introduced and it could only crash when EROFS_FS_DEBUG
(EROFS developping feature) is on.
replace BUG_ON with DBG_BUGON.
Signed-off-by: default avatarHariprasad Kelam <hariprasad.kelam@gmail.com>
Reviewed-by: default avatarGao Xiang <gaoxiang25@huawei.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 308f9df3
...@@ -147,7 +147,7 @@ static inline unsigned z_erofs_onlinepage_index(struct page *page) ...@@ -147,7 +147,7 @@ static inline unsigned z_erofs_onlinepage_index(struct page *page)
{ {
union z_erofs_onlinepage_converter u; union z_erofs_onlinepage_converter u;
BUG_ON(!PagePrivate(page)); DBG_BUGON(!PagePrivate(page));
u.v = &page_private(page); u.v = &page_private(page);
return atomic_read(u.o) >> Z_EROFS_ONLINEPAGE_INDEX_SHIFT; return atomic_read(u.o) >> Z_EROFS_ONLINEPAGE_INDEX_SHIFT;
...@@ -179,7 +179,7 @@ static inline void z_erofs_onlinepage_fixup(struct page *page, ...@@ -179,7 +179,7 @@ static inline void z_erofs_onlinepage_fixup(struct page *page,
if (!index) if (!index)
return; return;
BUG_ON(id != index); DBG_BUGON(id != index);
} }
v = (index << Z_EROFS_ONLINEPAGE_INDEX_SHIFT) | v = (index << Z_EROFS_ONLINEPAGE_INDEX_SHIFT) |
...@@ -193,7 +193,7 @@ static inline void z_erofs_onlinepage_endio(struct page *page) ...@@ -193,7 +193,7 @@ static inline void z_erofs_onlinepage_endio(struct page *page)
union z_erofs_onlinepage_converter u; union z_erofs_onlinepage_converter u;
unsigned v; unsigned v;
BUG_ON(!PagePrivate(page)); DBG_BUGON(!PagePrivate(page));
u.v = &page_private(page); u.v = &page_private(page);
v = atomic_dec_return(u.o); v = atomic_dec_return(u.o);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment