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 AEDE92253FE; Thu, 12 Dec 2024 16:51:29 +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=1734022289; cv=none; b=k2aAqesg9KfSzZjI1VzHIPgpIfcHKZ6AF19Bzw3tD272gm8/1/eK0sh+A7jVsoPG5ciwaOvUGr9KgbcIRhB6Zq0W2PBIDgEr6hfdIq4TnH2tqgA7nu8Sha9PFSnlD8iCpTWTnlxPs1+m2qEfIsXvtkLTEfG5fboooLH016spmQ8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1734022289; c=relaxed/simple; bh=KnsQ1YxgOLUUTzI+bMEZQia4Vpq3UIOl2VCEweJKSsc=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=BoRmK5oZZ13Suv30qRznNb9zIfSTqffXgQuF23CXUm0sTNJ9V0yyZiAadhGwEI9kN33ttWPsT6pLd2uvvGh324CEYqBu58y5E55TRwOljEoXiMllrjIs7GT5Iszu8ePHEBArjxIFGMZVmMrjWfBVxS7mMcxT4xxFaLVyXDzyXMw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=F7AZLydB; 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="F7AZLydB" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C2D9DC4CECE; Thu, 12 Dec 2024 16:51:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1734022289; bh=KnsQ1YxgOLUUTzI+bMEZQia4Vpq3UIOl2VCEweJKSsc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=F7AZLydB1m0MbxWD4zlwOmqOUKm2M0+F63VtiSkyneAN2J+BG48rRGgjg4ZHU9Wpv 6qP6u231VCcrmENCsancZlOYm3ppsAVmy9QwQDpKBCU1XhTkByQiiF8EJ9VnewOvLg daCKFF/3vwbJmjjt2+nk4RxGprFMrbndJTkX6aHw= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Takashi Iwai , Sasha Levin Subject: [PATCH 5.15 201/565] ALSA: us122l: Use snd_card_free_when_closed() at disconnection Date: Thu, 12 Dec 2024 15:56:36 +0100 Message-ID: <20241212144319.438558376@linuxfoundation.org> X-Mailer: git-send-email 2.47.1 In-Reply-To: <20241212144311.432886635@linuxfoundation.org> References: <20241212144311.432886635@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.15-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