From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 3863C176AA1; Thu, 12 Dec 2024 17:21:40 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1734024100; cv=none; b=aLMFj0ipoxN1XiGSiEhxDBKM4g1+u36CrMLVb0CgeGGGBDWAs56mJV4tAyxznjtm0CqTjYGWHRzWvemedm20cOoFUIsrCtZhL3/f9CUg3o+DlujCQGep+m5mM3Xv1Tsur6D5dz1iAPfVL5UZwbYmm6dxqCY7iTCdYbWv/0JeHRo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1734024100; c=relaxed/simple; bh=rVSRfXzL6QM/fqEfg1GqT2hUONisejX8889oy1UcpNA=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=XsamCBrR1Sr+H0ic8Evv7fuW6RsIwXUdS2z25gPO5GQnY4EI5995p0IoR7XWhuonI4/GHeLJgHDBzEo0jUWL+OeYCRKBbkAJrT24GaRmNEKhqDSneMM2fsouJceN3i5DW9p8QxsEc4ZHxwm7TxJajn+7Sh8ZhP05xdIRrmHcgtE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=c4MVe44o; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="c4MVe44o" Received: by smtp.kernel.org (Postfix) with ESMTPSA id A058EC4CECE; Thu, 12 Dec 2024 17:21:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1734024100; bh=rVSRfXzL6QM/fqEfg1GqT2hUONisejX8889oy1UcpNA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=c4MVe44o639xqud7YOH9xYkDrSa7giAIHfejRaAZ9JapS2ac99W21EBFECm+U2KJM BKixXEZDZs1eFCEa79gtl8qhqrvYWYPq12i9T8Rz6QGXIyx3ZAmbaPyCJfV1Eyx+DT obzhfVMimbPABxSnCB8PpVWB+HsTvF83yA0zjRz8= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Takashi Iwai , Sasha Levin Subject: [PATCH 5.10 156/459] ALSA: us122l: Use snd_card_free_when_closed() at disconnection Date: Thu, 12 Dec 2024 15:58:14 +0100 Message-ID: <20241212144259.679641487@linuxfoundation.org> X-Mailer: git-send-email 2.47.1 In-Reply-To: <20241212144253.511169641@linuxfoundation.org> References: <20241212144253.511169641@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 5.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Takashi Iwai [ Upstream commit b7df09bb348016943f56b09dcaafe221e3f73947 ] The USB disconnect callback is supposed to be short and not too-long waiting. OTOH, the current code uses snd_card_free() at disconnection, but this waits for the close of all used fds, hence it can take long. It eventually blocks the upper layer USB ioctls, which may trigger a soft lockup. An easy workaround is to replace snd_card_free() with snd_card_free_when_closed(). This variant returns immediately while the release of resources is done asynchronously by the card device release at the last close. The loop of us122l->mmap_count check is dropped as well. The check is useless for the asynchronous operation with *_when_closed(). Fixes: 030a07e44129 ("ALSA: Add USB US122L driver") Signed-off-by: Takashi Iwai Link: https://patch.msgid.link/20241113111042.15058-3-tiwai@suse.de Signed-off-by: Sasha Levin --- sound/usb/usx2y/us122l.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/sound/usb/usx2y/us122l.c b/sound/usb/usx2y/us122l.c index 0b0a87a631a06..bccb47d38c6dc 100644 --- a/sound/usb/usx2y/us122l.c +++ b/sound/usb/usx2y/us122l.c @@ -617,10 +617,7 @@ static void snd_us122l_disconnect(struct usb_interface *intf) usb_put_intf(usb_ifnum_to_if(us122l->dev, 1)); usb_put_dev(us122l->dev); - while (atomic_read(&us122l->mmap_count)) - msleep(500); - - snd_card_free(card); + snd_card_free_when_closed(card); } static int snd_us122l_suspend(struct usb_interface *intf, pm_message_t message) -- 2.43.0