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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8B9EBCD80A3 for ; Tue, 10 Oct 2023 11:18:41 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231360AbjJJLSk (ORCPT ); Tue, 10 Oct 2023 07:18:40 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37024 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231348AbjJJLSi (ORCPT ); Tue, 10 Oct 2023 07:18:38 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 8DB6FB6; Tue, 10 Oct 2023 04:18:31 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 97664C433C7; Tue, 10 Oct 2023 11:18:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1696936711; bh=yqS+VZM/cGBrRdLkNNqf/ekOvYWhuSMttPizxpeTXLk=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=yV4YC2Q4aA4fNLPu8MjLymDmJ2JyFbuqkeCn7yBFGJ+gwjhHvpK5VYRV0JH6asKP0 VD3cRuGcPjxnicUwqRUP/4dYT5/NBZ4Cq27G6FUejNVwjgoYBF3+Xvy4bf45mnudH2 0f+pmA4tilEFFygGrxMWQuwh9PP89Qn6XReY/0Vg= Date: Tue, 10 Oct 2023 13:18:28 +0200 From: Greg Kroah-Hartman To: Prashanth K Cc: stable@vger.kernel.org, linux-kernel@vger.kernel.org, Hongyu Xie , Mathias Nyman , stable@kernel.org, Hongyu Xie , Mathias Nyman Subject: Re: [PATCH RESEND] xhci: Keep interrupt disabled in initialization until host is running. Message-ID: <2023101043-muscular-risk-065f@gregkh> References: <1696847966-27555-1-git-send-email-quic_prashk@quicinc.com> <2023100943-underhand-wizard-6901@gregkh> <5f9b483a-ec7e-05f4-4472-57e2300f2c01@quicinc.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5f9b483a-ec7e-05f4-4472-57e2300f2c01@quicinc.com> Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org On Tue, Oct 10, 2023 at 02:34:44PM +0530, Prashanth K wrote: > > > On 09-10-23 06:22 pm, Greg Kroah-Hartman wrote: > > On Mon, Oct 09, 2023 at 04:09:26PM +0530, Prashanth K wrote: > > > From: Hongyu Xie > > > > > > [ Upstream commit a808925075fb750804a60ff0710614466c396db4 ] > > > > > > irq is disabled in xhci_quiesce(called by xhci_halt, with bit:2 cleared > > > in USBCMD register), but xhci_run(called by usb_add_hcd) re-enable it. > > > It's possible that you will receive thousands of interrupt requests > > > after initialization for 2.0 roothub. And you will get a lot of > > > warning like, "xHCI dying, ignoring interrupt. Shouldn't IRQs be > > > disabled?". This amount of interrupt requests will cause the entire > > > system to freeze. > > > This problem was first found on a device with ASM2142 host controller > > > on it. > > > > > > [tidy up old code while moving it, reword header -Mathias] > > > > > > Cc: stable@kernel.org > > > Signed-off-by: Hongyu Xie > > > Signed-off-by: Mathias Nyman > > > Link: https://lore.kernel.org/r/20220623111945.1557702-2-mathias.nyman@linux.intel.com > > > Signed-off-by: Greg Kroah-Hartman > > > Cc: # 5.15 > > > Signed-off-by: Prashanth K > > > --- > > > > Any specific reason you missed adding the extra blank line in this > > version of the backport that the original added? That is going to cause > > problems in the future if other patches are added on top of this that > > would be expecting it because it is that way in Linus's tree. > > > > Thanks for pointing out, i removed it while resolving some merge conflicts. > Will add it back in next version. > > > And why is this only relevant for 5.15.y? > > I'm not really sure why this was only ported from 5.19 onwards and not > present in older kernels (could be because of dependencies/conflicts). > > But anyways im backporting it to 5.15 since an irq storm was seen on a qcom > SOC working on 5.15, and this patch is helping solve it. > > Should I change the CC to just stable kernel (without mentioning kernel > version) ? > something like this -- Cc: No, let us know what kernel version this is to be applied to so we know, if you only think this is relevant for 5.15.y as you have tested it there, that's fine, I just wanted to be sure. thanks, greg k-h