From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id B363EC433DF for ; Mon, 6 Jul 2020 19:55:25 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 91113207D0 for ; Mon, 6 Jul 2020 19:55:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1594065325; bh=bgpzOSjX9GVaY9onoQwHcv3Pysfo/Zwq3IztNJwlD/k=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=MQBgzuJsp63x8N3l1ybaxCzr119dfihT9+Ogdln5/1zF5zbJeyBJixwiLPZuivD4Z qY+txrFC8JGvnMV7csjJ1VUuw3gs9wI/QksKGUGEjG9bvfpZb6qrlRje/0EL8rSKD6 t0fLOAICtnS+oRzxm/vLl4z8I+0WonVoyCZ/OKL4= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726600AbgGFTzY (ORCPT ); Mon, 6 Jul 2020 15:55:24 -0400 Received: from mail.kernel.org ([198.145.29.99]:36960 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725892AbgGFTzX (ORCPT ); Mon, 6 Jul 2020 15:55:23 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id D2408207D0; Mon, 6 Jul 2020 19:55:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1594065323; bh=bgpzOSjX9GVaY9onoQwHcv3Pysfo/Zwq3IztNJwlD/k=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=zXqeNYPi3jQcXv4g6h6rDI9h4rQ/pufzm8EQ8QbwBt0T53EsSx8QubeR8rnlhDYFu H2j5MD+KPSv3oOqPXQsLLc1W7Xxhk5T4Odfp48OLAn0kd5YwDAZS/g1TxIpKsSggaY jhAM45zdcPG/Fs+r3NiDAiOzmVYeKrv/MRNEn+H8= Date: Mon, 6 Jul 2020 21:55:20 +0200 From: Greg KH To: qiang.zhang@windriver.com Cc: balbi@kernel.org, colin.king@canonical.com, linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org, stable@vger.kernel.org Subject: Re: [PATCH v3] usb: gadget: function: fix missing spinlock in f_uac1_legacy Message-ID: <20200706195520.GA93712@kroah.com> References: <20200705124027.30011-1-qiang.zhang@windriver.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200705124027.30011-1-qiang.zhang@windriver.com> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sun, Jul 05, 2020 at 08:40:27PM +0800, qiang.zhang@windriver.com wrote: > From: Zhang Qiang > > Add a missing spinlock protection for play_queue, because > the play_queue may be destroyed when the "playback_work" > work func and "f_audio_out_ep_complete" callback func > operate this paly_queue at the same time. "play_queue", right? > > Cc: stable > Signed-off-by: Zhang Qiang Because you do not have a Fixes: tag in here, how far back do you want the stable patch to go to? That's why, if you can, it's always good to have a "Fixes:" tag in there to show what commit caused the problem you are fixing here. So, what commit caused this? thanks, gre gk-h