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 9566EFBF9; Wed, 20 Dec 2023 05:57:57 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="bPdecnAx" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 84096C433C7; Wed, 20 Dec 2023 05:57:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1703051877; bh=n0ckWVr2p5ZoAOLCgKU6Bdxii8DiBrVLcshx8Gs1Gv8=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=bPdecnAxw7khdyUI/WPAvwDX+64JC81cBxPIJZKCTcx1rFPLt/MPfyi6gBs9UhpxT vuV6PuhPcLbQvgtBBSe3BMNSvM3/NvD5V86aQfgarfmfC7BuD8+eN4uxTzcsnYg92n f9hAvwW/2HahH0NUxgo5zde7eshHtu+qkEvKp8Xc= Date: Wed, 20 Dec 2023 06:57:54 +0100 From: Greg Kroah-Hartman To: Chunfeng Yun Cc: Rob Herring , Krzysztof Kozlowski , AngeloGioacchino Del Regno , Conor Dooley , Matthias Brugger , Mathias Nyman , linux-usb@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-mediatek@lists.infradead.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Eddie Hung , Macpaul Lin , stable@vger.kernel.org Subject: Re: [PATCH v3 2/3] usb: xhci-mtk: fix a short packet issue of gen1 isoc-in transfer Message-ID: <2023122033-footprint-impose-9989@gregkh> References: <20231220025842.7082-1-chunfeng.yun@mediatek.com> <20231220025842.7082-2-chunfeng.yun@mediatek.com> Precedence: bulk X-Mailing-List: devicetree@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20231220025842.7082-2-chunfeng.yun@mediatek.com> On Wed, Dec 20, 2023 at 10:58:41AM +0800, Chunfeng Yun wrote: > For Gen1 isoc-in transfer, host still send out unexpected ACK after device > finish the burst with a short packet, this will cause an exception on the > connected device, such as, a usb 4k camera. > It can be fixed by setting rxfifo depth less than 4k bytes, prefer to use > 3k here, the side-effect is that may cause performance drop about 10%, > including bulk transfer. > > Fixes: 926d60ae64a6 ("usb: xhci-mtk: modify the SOF/ITP interval for mt8195") > Cc: stable@vger.kernel.org > Signed-off-by: Chunfeng Yun > --- > v3: > add Cc stable Why is a patch that you are marking for stable inclusion (and I am guessing inclusion in 6.7-final) in the middle of other patches that are not marked as such? Always split out bugfixes from other things so that they can go through the two different branches, one for this current release, and one for the next one. Otherwise you will have to wait until 6.8-rc1 for this bugfix to land, which I doubt you intend to have happen. Please fix up and resend 2 different patch series. thanks, greg k-h