|
|
b9a53a |
From 0160499e86642f159a972be0196bf7c8a1d19ea8 Mon Sep 17 00:00:00 2001
|
|
|
b9a53a |
From: Yu Watanabe <watanabe.yu+github@gmail.com>
|
|
|
b9a53a |
Date: Mon, 22 Oct 2018 12:04:13 +0900
|
|
|
b9a53a |
Subject: [PATCH] sd-device: introduce log_device_*() macros
|
|
|
b9a53a |
|
|
|
b9a53a |
(cherry picked from commit b0cba0ca526ed2d86e283a0fcfebdf0a4d4bea9b)
|
|
|
b9a53a |
|
|
|
b9a53a |
Related: #1753369
|
|
|
b9a53a |
---
|
|
|
b9a53a |
src/libsystemd/sd-device/device-util.h | 27 ++++++++++++++++++++++++++
|
|
|
b9a53a |
1 file changed, 27 insertions(+)
|
|
|
b9a53a |
|
|
|
b9a53a |
diff --git a/src/libsystemd/sd-device/device-util.h b/src/libsystemd/sd-device/device-util.h
|
|
|
b9a53a |
index 6dcd2645e6..448dfc63d7 100644
|
|
|
b9a53a |
--- a/src/libsystemd/sd-device/device-util.h
|
|
|
b9a53a |
+++ b/src/libsystemd/sd-device/device-util.h
|
|
|
b9a53a |
@@ -33,3 +33,30 @@
|
|
|
b9a53a |
for (device = sd_device_enumerator_get_subsystem_first(enumerator); \
|
|
|
b9a53a |
device; \
|
|
|
b9a53a |
device = sd_device_enumerator_get_subsystem_next(enumerator))
|
|
|
b9a53a |
+
|
|
|
b9a53a |
+#define log_device_full(device, level, error, ...) \
|
|
|
b9a53a |
+ ({ \
|
|
|
b9a53a |
+ const char *_sysname = NULL, *_subsystem = NULL; \
|
|
|
b9a53a |
+ sd_device *_d = (device); \
|
|
|
b9a53a |
+ int _level = (level), _error = (error); \
|
|
|
b9a53a |
+ \
|
|
|
b9a53a |
+ if (_d && _unlikely_(log_get_max_level() >= _level)) { \
|
|
|
b9a53a |
+ (void) sd_device_get_sysname(_d, &_sysname); \
|
|
|
b9a53a |
+ (void) sd_device_get_subsystem(_d, &_subsystem); \
|
|
|
b9a53a |
+ } \
|
|
|
b9a53a |
+ log_object_internal(_level, _error, __FILE__, __LINE__, __func__, \
|
|
|
b9a53a |
+ _sysname ? "DEVICE=" : NULL, _sysname, \
|
|
|
b9a53a |
+ _subsystem ? "SUBSYSTEM=" : NULL, _subsystem, ##__VA_ARGS__); \
|
|
|
b9a53a |
+ })
|
|
|
b9a53a |
+
|
|
|
b9a53a |
+#define log_device_debug(link, ...) log_device_full(link, LOG_DEBUG, 0, ##__VA_ARGS__)
|
|
|
b9a53a |
+#define log_device_info(link, ...) log_device_full(link, LOG_INFO, 0, ##__VA_ARGS__)
|
|
|
b9a53a |
+#define log_device_notice(link, ...) log_device_full(link, LOG_NOTICE, 0, ##__VA_ARGS__)
|
|
|
b9a53a |
+#define log_device_warning(link, ...) log_device_full(link, LOG_WARNING, 0, ##__VA_ARGS__)
|
|
|
b9a53a |
+#define log_device_error(link, ...) log_device_full(link, LOG_ERR, 0, ##__VA_ARGS__)
|
|
|
b9a53a |
+
|
|
|
b9a53a |
+#define log_device_debug_errno(link, error, ...) log_device_full(link, LOG_DEBUG, error, ##__VA_ARGS__)
|
|
|
b9a53a |
+#define log_device_info_errno(link, error, ...) log_device_full(link, LOG_INFO, error, ##__VA_ARGS__)
|
|
|
b9a53a |
+#define log_device_notice_errno(link, error, ...) log_device_full(link, LOG_NOTICE, error, ##__VA_ARGS__)
|
|
|
b9a53a |
+#define log_device_warning_errno(link, error, ...) log_device_full(link, LOG_WARNING, error, ##__VA_ARGS__)
|
|
|
b9a53a |
+#define log_device_error_errno(link, error, ...) log_device_full(link, LOG_ERR, error, ##__VA_ARGS__)
|