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 DDD5C17082A; Fri, 10 May 2024 11:28:36 +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=1715340517; cv=none; b=KQQoM5Buc5GnRbacMvo9/KjavIhzGKQ5wePVuIa2jQHoJbWBUFD4bcw68pMfXuEUw3Jip9NEIPDte2EQUpEPfbSc7JobLMafWLcpPWbCRgNU6XHawXKNAPq4gdOieivk9ugUVB0ldfkFiOXCyQs8yd7Xp9+TQZu6ghRCyNTrGGo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715340517; c=relaxed/simple; bh=VjidK1s4OWd/3MT51iGA2Jy+KprZUVq1rMsqwlZarsg=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=Sgt8Fvl6xpQIf0cx9B3daYhyfFptHKxvq+jzhGt0McZVYY3vvf1FU4SIXDNpSp0PR40t3Ehyl6llDk6iRzhwGGaPXEcTox0skaYpNVWjNCun89ozl+UxbJa8Byq+lrePqqsrMLtA+BM/T1yzN/I9TsS9cUOim1ZkWGlBsMg82CE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=iaI9S+Ow; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="iaI9S+Ow" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3BCB9C2BD11; Fri, 10 May 2024 11:28:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1715340516; bh=VjidK1s4OWd/3MT51iGA2Jy+KprZUVq1rMsqwlZarsg=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=iaI9S+OwFS9NEUT/5eixzrMiTE5eZDdAf3P+HUUyzjKTzVCMZHIASt1OH79PJmEfe 7XbvV/XakUNGN+KdrF/d5cYw2oFTehq9YLoQ9ugyMsVmlbtktPqFJBzVI315X0Evdf VWRSXkB5BlhjJRsZAmilOS6WzKjJIFfU1G+eLqpCG1wbRzsj5cg2MUNp5qwf1a50lu mXQLkUJ4HFHq+scpvlZMNTF/cJPushGLkcsjWRiZHbdM+7R7mEP+F8U23MRFwi+o53 Ms/pmOCYKXjGjI5jthCQTEgGkv3Fm4KyR4r6MzmEdTrxqm+Uli8ed6WjFY2dP9bR41 iLHeo0uvLCdEA== Date: Fri, 10 May 2024 12:28:31 +0100 From: Simon Horman To: =?utf-8?Q?Asbj=C3=B8rn_Sloth_T=C3=B8nnesen?= Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org, "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Manish Chopra , Przemek Kitszel Subject: Re: [PATCH net-next v2 07/14] net: qede: use extack in qede_flow_parse_tcp_v4() Message-ID: <20240510112831.GJ2347895@kernel.org> References: <20240508143404.95901-1-ast@fiberby.net> <20240508143404.95901-8-ast@fiberby.net> Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20240508143404.95901-8-ast@fiberby.net> On Wed, May 08, 2024 at 02:33:55PM +0000, Asbjørn Sloth Tønnesen wrote: > Convert qede_flow_parse_tcp_v4() to take extack, > and drop the edev argument. > > Pass extack in call to qede_flow_parse_v4_common(). > > In call to qede_flow_parse_tcp_v4(), use NULL as extack > for now, until a subsequent patch makes extack available. > > Only compile tested. > > Signed-off-by: Asbjørn Sloth Tønnesen Reviewed-by: Simon Horman