Author: hselasky
Date: Mon Jun  8 09:25:01 2020
New Revision: 361908
URL: https://svnweb.freebsd.org/changeset/base/361908

Log:
  MFC r361577:
  Don't allow USB device drivers to parent own interface.
  It will prevent proper USB device detach.
  
  Sponsored by: Mellanox Technologies

Modified:
  stable/10/sys/dev/usb/usb_device.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/dev/usb/usb_device.c
==============================================================================
--- stable/10/sys/dev/usb/usb_device.c  Mon Jun  8 09:24:28 2020        
(r361907)
+++ stable/10/sys/dev/usb/usb_device.c  Mon Jun  8 09:25:01 2020        
(r361908)
@@ -1274,7 +1274,7 @@ usbd_set_parent_iface(struct usb_device *udev, uint8_t
 {
        struct usb_interface *iface;
 
-       if (udev == NULL) {
+       if (udev == NULL || iface_index == parent_index) {
                /* nothing to do */
                return;
        }
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to