Commit 8c5a93eb authored by Zhengjun Xing's avatar Zhengjun Xing Committed by Greg Kroah-Hartman
Browse files

xhci: xhci debugfs device nodes weren't removed after device plugged out



There is a bug after plugged out USB device, the device and its ep00
nodes are still kept, we need to remove the nodes in xhci_free_dev when
USB device is plugged out.

Fixes: 052f71e2 ("xhci: Fix xhci debugfs NULL pointer dereference in resume from hibernate")
Cc: <stable@vger.kernel.org> # v4.15
Signed-off-by: default avatarZhengjun Xing <zhengjun.xing@linux.intel.com>
Signed-off-by: default avatarMathias Nyman <mathias.nyman@linux.intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d9167671
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -3545,13 +3545,11 @@ static void xhci_free_dev(struct usb_hcd *hcd, struct usb_device *udev)
		virt_dev->eps[i].ep_state &= ~EP_STOP_CMD_PENDING;
		del_timer_sync(&virt_dev->eps[i].stop_cmd_timer);
	}

	ret = xhci_disable_slot(xhci, udev->slot_id);
	if (ret) {
	xhci_debugfs_remove_slot(xhci, udev->slot_id);
	ret = xhci_disable_slot(xhci, udev->slot_id);
	if (ret)
		xhci_free_virt_device(xhci, udev->slot_id);
}
}

int xhci_disable_slot(struct xhci_hcd *xhci, u32 slot_id)
{