aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-05-31 16:53:59 -0400
committerDrew DeVault <sir@cmpwn.com>2017-05-31 16:53:59 -0400
commitae770043460cdfca496dd6caeab55f337f3db37b (patch)
tree80286afe719cc6f372086b72d85ef80f655726be
parente2ee67125e076af9be1f115051c680f6e3b69be5 (diff)
Add more logging around udev
-rw-r--r--backend/drm/udev.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/backend/drm/udev.c b/backend/drm/udev.c
index e5470157..79e303d6 100644
--- a/backend/drm/udev.c
+++ b/backend/drm/udev.c
@@ -147,12 +147,16 @@ static int udev_event(int fd, uint32_t mask, void *data) {
return 1;
}
+ const char *action = udev_device_get_action(dev);
const char *path = udev_device_get_devnode(dev);
+
+ wlr_log(L_DEBUG, "udev event for %s (%s)",
+ udev_device_get_sysname(dev), action);
+
if (!path || strcmp(path, udev->drm_path) != 0) {
goto out;
}
- const char *action = udev_device_get_action(dev);
if (!action || strcmp(action, "change") != 0) {
goto out;
}
@@ -189,9 +193,8 @@ bool wlr_udev_init(struct wl_display *display, struct wlr_udev *udev) {
wlr_log(L_ERROR, "Failed to create udev event source");
goto error_mon;
}
-
- udev->drm_path = NULL;
-
+
+ wlr_log(L_DEBUG, "Successfully initialized udev");
return true;
error_mon: