Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bc5522fd authored by Roger Quadros's avatar Roger Quadros Committed by Jack Pham
Browse files

usb: xhci: lock mutex on xhci_stop



Else it races with xhci_setup_device

Cc: <stable@vger.kernel.org>
Signed-off-by: default avatarRoger Quadros <rogerq@ti.com>
Signed-off-by: default avatarMathias Nyman <mathias.nyman@linux.intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Change-Id: I00775500870968e444e32ae68b736dc73c44435d
Git-commit: 85ac90f8953a58f6a057b727bc9db97721e3fb8e
Git-repo: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git


Signed-off-by: default avatarJack Pham <jackp@codeaurora.org>
parent 7bbe706f
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -689,8 +689,11 @@ void xhci_stop(struct usb_hcd *hcd)
	u32 temp;
	struct xhci_hcd *xhci = hcd_to_xhci(hcd);

	mutex_lock(&xhci->mutex);

	if (!usb_hcd_is_primary_hcd(hcd)) {
		xhci_only_stop_hcd(xhci->shared_hcd);
		mutex_unlock(&xhci->mutex);
		return;
	}

@@ -729,6 +732,7 @@ void xhci_stop(struct usb_hcd *hcd)
	xhci_dbg_trace(xhci, trace_xhci_dbg_init,
			"xhci_stop completed - status = %x",
			readl(&xhci->op_regs->status));
	mutex_unlock(&xhci->mutex);
}

/*