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 E6F432236EA; Thu, 12 Dec 2024 16:05:03 +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=1734019504; cv=none; b=qbV0tyWo350a6u93/GKwP2eLlfRPup764oHWjtEmArynoHwFbX0ZyMKaKdbSGpLLusWxv5SZ8W2z0BSdgaW6YcNtwa2NwYNgojjtAYgNN+7Z6mSnhRg7Vj7PefWqZx4QNbZoQ2LkWdyvJTtS68RiOtKPSFevLw+UXqHvGC/pg3o= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1734019504; c=relaxed/simple; bh=cjt/IG/0m3p0cG4TwFVgt426+kqh7XxYdPmScmLT6tw=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=OdviZxs3qjhziBcxIgJCe5p6aJm0g8GmDAO0vOBQ4E/E156bvb0XkqEU/iCNoypMhzO6uP7BJZpY3HUsYY6ea7SVSoEAHZxrGgzDQK0FQqfTXu+DPmfmMJWq0B9ry2MS9tJDbV7gUvnZd8MpQ1IU9qq27wQ2Kn7pUzSvyf0D6Ks= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=nX3+1C5Y; 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="nX3+1C5Y" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 36C39C4CECE; Thu, 12 Dec 2024 16:05:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1734019503; bh=cjt/IG/0m3p0cG4TwFVgt426+kqh7XxYdPmScmLT6tw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=nX3+1C5YJfDFSK99tYQ4DziGAuiANgqbh8ziJeSJIeIMWPggFWqYl6l1rN8L9aGq5 5fLZaC8fzzPlL5GvfBkCkQk3mzxyKcF5/IkIXYxTsuDZWimRJhdcKe8I7L/MHYbdTc mOdotUQAI2n01ibJWXDXsBLlvmu6TlUFyFiML8MM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Takashi Iwai , Sasha Levin Subject: [PATCH 6.1 194/772] ALSA: us122l: Use snd_card_free_when_closed() at disconnection Date: Thu, 12 Dec 2024 15:52:19 +0100 Message-ID: <20241212144357.956003717@linuxfoundation.org> X-Mailer: git-send-email 2.47.1 In-Reply-To: <20241212144349.797589255@linuxfoundation.org> References: <20241212144349.797589255@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 6.1-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 e558931cce16e..23d7d542a3de6 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