From e2e6caa01ba97bcdb82100c6b928b5743e3aae6c Mon Sep 17 00:00:00 2001 From: Pali Rohár Date: Sun, 10 Jul 2022 13:38:07 +0200 Subject: ubifs: Use U-Boot assert() from in UBI/UBIFS code MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit U-Boot already provides assert function, so it use also in ubi and ubifs code. Signed-off-by: Pali Rohár --- fs/ubifs/debug.h | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'fs') diff --git a/fs/ubifs/debug.h b/fs/ubifs/debug.h index d69f1e6ac7..0ecc2e0c8e 100644 --- a/fs/ubifs/debug.h +++ b/fs/ubifs/debug.h @@ -165,14 +165,9 @@ struct ubifs_global_debug_info { dbg_snprintf_key(c, key, __tmp_key_buf, DBG_KEY_BUF_LEN)); \ } while (0) #else -#define ubifs_assert(expr) do { \ - if (unlikely(!(expr))) { \ - pr_debug("UBIFS assert failed in %s at %u\n", \ - __func__, __LINE__); \ - dump_stack(); \ - } \ -} while (0) +#include +#define ubifs_assert(expr) assert(expr) #define ubifs_assert_cmt_locked(c) do { } while (0) #define ubifs_dbg_msg(type, fmt, ...) \ -- cgit v1.2.3