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=-6.3 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,USER_AGENT_SANE_2 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 70939C4741F for ; Tue, 29 Sep 2020 17:10:02 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 11145208FE for ; Tue, 29 Sep 2020 17:10:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1601399402; bh=ZHM5fQUcs3Ofyh4Bqos2YQUudJmgsF5M4oKOEmYRqJE=; h=Date:From:To:Cc:Subject:In-Reply-To:References:List-ID:From; b=N2/LjtBIVHNRY04n+x4rJ9Jl2qzD60852BkjpmZ5FirWLhdVEsnmQzNTWD87G2NPa y2OcAPYw4vEN4YbTr4YmGArTkFsNAJO0AJmICAYzgIdQjI/y6xcM5ssIaw4yJbmWP4 aBTKP3QzYljoONH6iUftTtXP+t02CCZtajYi3kV8= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728514AbgI2RJ7 (ORCPT ); Tue, 29 Sep 2020 13:09:59 -0400 Received: from mail.kernel.org ([198.145.29.99]:47692 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725554AbgI2RJ6 (ORCPT ); Tue, 29 Sep 2020 13:09:58 -0400 Received: from coco.lan (ip5f5ad5bc.dynamic.kabel-deutschland.de [95.90.213.188]) (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 CCFF4208B8; Tue, 29 Sep 2020 17:09:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1601399398; bh=ZHM5fQUcs3Ofyh4Bqos2YQUudJmgsF5M4oKOEmYRqJE=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=dQubT9C8mD0703do9azZagfnOelLHEKHsglnjAGKFf+ltrzWZS1Lfu5uVsUYFTxeU 8CWQzZ6p1xtX12HmVqtXDEy9c/E2mH6pQhBzsDc4I7KRuNZz5ehj7sYD/vjg2MBtt8 D3arV+JHh5F1jjACfEqeN1mImorydXizV1wmjLYo= Date: Tue, 29 Sep 2020 19:09:53 +0200 From: Mauro Carvalho Chehab To: Malcolm Priestley Cc: Joe Perches , LKML , linux-media , Julia Lawall Subject: Re: [likely PATCH] media: lmedm04: Fix misuse of comma Message-ID: <20200929190953.2f621541@coco.lan> In-Reply-To: References: X-Mailer: Claws Mail 3.17.6 (GTK+ 2.24.32; x86_64-redhat-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org Em Mon, 24 Aug 2020 21:01:12 +0100 Malcolm Priestley escreveu: > Good catch the interrupt URB is not running because usb_submit_urb is tangled with it. > > It only really affects signal strength. Yeah, that indeed sounds to be a real bug. > > add > > Fixes: 15e1ce33182d ("[media] lmedm04: Fix usb_submit_urb BOGUS urb xfer, pipe 1 != type 3 in interrupt urb") > Cc: > > Regards > > > Malcolm That's said, while here, it sounds weird to use GFP_ATOMIC instead of GFP_KERNEL for the URB submissions. Malcolm, if you still have the hardware for testing, could you please check if replacing them by GFP_KERNEL will work? Thanks! Mauro Thanks, Mauro