[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <8e6ebee6b664259579296b66a9668e4b301c7030.1598518912.git.brookxu@tencent.com>
Date: Thu, 27 Aug 2020 18:14:16 +0800
From: Chunguang Xu <brookxu.cn@...il.com>
To: arnd@...db.de
Cc: rppt@...nel.org, linux-arch@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: [PATCH 11/23] afs: use ASSERT_FAIL()/ASSERT_WARN() to cleanup some code
Since ASSERT_FAIL() and ASSERT_WARN() have been provided, ASSERT()
may be realized through them, thus reducing code redundancy and
facilitating problem analysis.
Signed-off-by: Chunguang Xu <brookxu@...cent.com>
---
fs/afs/internal.h | 9 +--------
1 file changed, 1 insertion(+), 8 deletions(-)
diff --git a/fs/afs/internal.h b/fs/afs/internal.h
index 792ac71..72594e5 100644
--- a/fs/afs/internal.h
+++ b/fs/afs/internal.h
@@ -1580,14 +1580,7 @@ static inline int afs_bad(struct afs_vnode *vnode, enum afs_file_error where)
*/
#if 1 // defined(__KDEBUGALL)
-#define ASSERT(X) \
-do { \
- if (unlikely(!(X))) { \
- printk(KERN_ERR "\n"); \
- printk(KERN_ERR "AFS: Assertion failed\n"); \
- BUG(); \
- } \
-} while(0)
+#define ASSERT(X) ASSERT_FAIL(x)
#define ASSERTCMP(X, OP, Y) \
do { \
--
1.8.3.1
Powered by blists - more mailing lists