summaryrefslogtreecommitdiff
path: root/messages.h
diff options
context:
space:
mode:
authorDimitri John Ledkov <xnox@ubuntu.com>2018-05-08 14:17:29 -0700
committerDimitri John Ledkov <xnox@ubuntu.com>2018-05-08 14:17:29 -0700
commitd00c9550da1801a0eaff5cedf4312e24691b31ea (patch)
tree3881ca1764ef792259e1b70f12c884a3ac0c0715 /messages.h
parentdab6d2181f1f194ec3a76d900cf2c6533379cbea (diff)
New upstream release.
Diffstat (limited to 'messages.h')
-rw-r--r--messages.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/messages.h b/messages.h
index 4999c7b9..2b97aa08 100644
--- a/messages.h
+++ b/messages.h
@@ -54,6 +54,19 @@
DO_ABORT_ON_ERROR; \
} while (0)
+#define error_btrfs_util(err) \
+ do { \
+ const char *errno_str = strerror(errno); \
+ const char *lib_str = btrfs_util_strerror(err); \
+ PRINT_TRACE_ON_ERROR; \
+ PRINT_VERBOSE_ERROR; \
+ if (lib_str && strcmp(errno_str, lib_str) != 0) \
+ __btrfs_error("%s: %s", lib_str, errno_str); \
+ else \
+ __btrfs_error("%s", errno_str); \
+ DO_ABORT_ON_ERROR; \
+ } while (0)
+
#define warning(fmt, ...) \
do { \
PRINT_TRACE_ON_ERROR; \