[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20180831212408.20071-1-igor.stoppa@huawei.com>
Date: Sat, 1 Sep 2018 00:24:08 +0300
From: Igor Stoppa <igor.stoppa@...il.com>
To: Dmitry Safonov <dima@...sta.com>
Cc: igor.stoppa@...il.com, Igor Stoppa <igor.stoppa@...wei.com>,
Shuah Khan <shuah@...nel.org>, linux-kselftest@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: [PATCH] selftest: vm: add unlikely() to BUG_ON()
BUG_ON() is unlikely() to BUG()
For unlikely(), borrow the definition from tools/include/linux/compiler.h
Signed-off-by: Igor Stoppa <igor.stoppa@...wei.com>
Cc: Dmitry Safonov <dima@...sta.com>
Cc: Shuah Khan <shuah@...nel.org>
Cc: linux-kselftest@...r.kernel.org
Cc: linux-kernel@...r.kernel.org
---
tools/testing/selftests/vm/map_populate.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/tools/testing/selftests/vm/map_populate.c b/tools/testing/selftests/vm/map_populate.c
index 6b8aeaa0bf7a..1bf8ff068dcd 100644
--- a/tools/testing/selftests/vm/map_populate.c
+++ b/tools/testing/selftests/vm/map_populate.c
@@ -21,9 +21,13 @@
#define MMAP_SZ 4096
#endif
+#ifndef unlikely
+# define unlikely(x) __builtin_expect(!!(x), 0)
+#endif
+
#define BUG_ON(condition, description) \
do { \
- if (condition) { \
+ if (unlikely(condition)) { \
fprintf(stderr, "[FAIL]\t%s:%d\t%s:%s\n", __func__, \
__LINE__, (description), strerror(errno)); \
exit(1); \
--
2.17.1
Powered by blists - more mailing lists