Skip to content
Snippets Groups Projects
Commit 76608647 authored by Andreas Dilger's avatar Andreas Dilger
Browse files

Branch HEAD

Add space to LASSERT error message.
parent 86aeca35
No related branches found
No related tags found
No related merge requests found
......@@ -87,7 +87,7 @@
else { \
libcfs_debug_msg(NULL, DEBUG_SUBSYSTEM, D_EMERG, \
__FILE__, __FUNCTION__,__LINE__, \
"ASSERTION(" #cond ") failed:" fmt, \
"ASSERTION(" #cond ") failed: " fmt, \
## a); \
LBUG(); \
} \
......@@ -108,7 +108,7 @@
if (unlikely(!(cond))) { \
libcfs_debug_msg(NULL, DEBUG_SUBSYSTEM, D_EMERG, \
__FILE__, __FUNCTION__,__LINE__, \
"ASSERTION(" #cond ") failed:" fmt, \
"ASSERTION(" #cond ") failed: " fmt, \
## a); \
LBUG(); \
} \
......@@ -278,8 +278,8 @@ int libcfs_debug_cleanup(void);
* specific implementations come from the above header files
*/
#define likely(x) __builtin_expect(!!(x), 1)
#define unlikely(x) __builtin_expect(!!(x), 0)
#define likely(x) __builtin_expect(!!(x), 1)
#define unlikely(x) __builtin_expect(!!(x), 0)
/* !__KERNEL__ */
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment