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: Hariprasad Kelam <hariprasad.kelam@gmail.com>
Reviewed-by: Gao Xiang <gaoxiang25@huawei.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
 {
        union z_erofs_onlinepage_converter u;
 
-       BUG_ON(!PagePrivate(page));
+       DBG_BUGON(!PagePrivate(page));
        u.v = &page_private(page);
 
        return atomic_read(u.o) >> Z_EROFS_ONLINEPAGE_INDEX_SHIFT;
                if (!index)
                        return;
 
-               BUG_ON(id != index);
+               DBG_BUGON(id != index);
        }
 
        v = (index << Z_EROFS_ONLINEPAGE_INDEX_SHIFT) |
        union z_erofs_onlinepage_converter u;
        unsigned v;
 
-       BUG_ON(!PagePrivate(page));
+       DBG_BUGON(!PagePrivate(page));
        u.v = &page_private(page);
 
        v = atomic_dec_return(u.o);