From d41583a682258801fe7a20faa86b9feab7729920 Mon Sep 17 00:00:00 2001 From: John Keeping Date: Dec 09 2020 20:45:00 +0000 Subject: linux_udev: silently ignore "bind" action When a driver is bound to a device, udev emits a "bind" action that causes libusb to log an error message: libusb: error [udev_hotplug_event] ignoring udev action bind Since we know this action is not relevant for libusb, silently ignore it to avoid people thinking there is something wrong. There is already a debug log entry for the action, so there is no need to add a duplicate here. Signed-off-by: John Keeping (cherry picked from commit f20f2be7825e34b5273af17fc0740c60bd352b32) patch_name: 0005-linux_udev-silently-ignore-bind-action.patch present_in_specfile: true location_in_specfile: 5 squash_commits: true --- diff --git a/libusb/os/linux_udev.c b/libusb/os/linux_udev.c index bea03e3..b09d299 100644 --- a/libusb/os/linux_udev.c +++ b/libusb/os/linux_udev.c @@ -262,6 +262,8 @@ static void udev_hotplug_event(struct udev_device* udev_dev) linux_hotplug_enumerate(busnum, devaddr, sys_name); } else if (detached) { linux_device_disconnected(busnum, devaddr); + } else if (strncmp(udev_action, "bind", 4) == 0) { + /* silently ignore "known unhandled" action */ } else { usbi_err(NULL, "ignoring udev action %s", udev_action); } diff --git a/libusb/version_nano.h b/libusb/version_nano.h index 41a03d1..1764dec 100644 --- a/libusb/version_nano.h +++ b/libusb/version_nano.h @@ -1 +1 @@ -#define LIBUSB_NANO 11412 +#define LIBUSB_NANO 11413