svn commit: r361907 - stable/11/sys/dev/usb

Hans Petter Selasky hselasky at FreeBSD.org
Mon Jun 8 09:24:28 UTC 2020


Author: hselasky
Date: Mon Jun  8 09:24:28 2020
New Revision: 361907
URL: https://svnweb.freebsd.org/changeset/base/361907

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/11/sys/dev/usb/usb_device.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/dev/usb/usb_device.c
==============================================================================
--- stable/11/sys/dev/usb/usb_device.c	Mon Jun  8 09:23:52 2020	(r361906)
+++ stable/11/sys/dev/usb/usb_device.c	Mon Jun  8 09:24:28 2020	(r361907)
@@ -1400,7 +1400,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;
 	}


More information about the svn-src-all mailing list