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 EB945C6FD18 for ; Wed, 29 Mar 2023 11:02:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229538AbjC2LCv (ORCPT ); Wed, 29 Mar 2023 07:02:51 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:59766 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229436AbjC2LCu (ORCPT ); Wed, 29 Mar 2023 07:02:50 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id EB8861BC6 for ; Wed, 29 Mar 2023 04:02:49 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 38C6F60C5B for ; Wed, 29 Mar 2023 11:02:49 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id C9BE4C433D2; Wed, 29 Mar 2023 11:02:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1680087768; bh=SzMnZMEIZXDrvhjme+WED+cf8vKrn55d+BsCld4CNqc=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=XEDbRc5iEQFJJLYrPqz8+HnOctWqNfddSIpJBOmkcYr0jNsdx2zatzhy9HRiKkP1U MhTozlrHORNZGcqrkT8WoS+BQsrKXsFQwNqSo8Cu4SV/TXUPPsmRo7WV0UEm1gRz4P cSWIVFGMWX0Yf1TF/iAK5mxqe4vjU87bO5U/VG2eNH8sCEGco5UpUiBRjiTQC0Ii53 mw9UVIcTjrZ1wE/2DmZUTSHAoRIviB+MJvSW7VZIktrUSHsbZIZce53FDikwDfM12O SQsibwt2yI0SSFWIrBiNkPfSmU3Fs7d8jqzIZrnOFwfXp7quEYQQazDblzHbh4usym 8hQyGQVgfqaVg== Date: Wed, 29 Mar 2023 14:02:43 +0300 From: Leon Romanovsky To: Sven Auhagen Cc: netdev@vger.kernel.org, mw@semihalf.com, linux@armlinux.org.uk, kuba@kernel.org, davem@davemloft.net, maxime.chevallier@bootlin.com, pabeni@redhat.com Subject: Re: [PATCH v3 3/3] net: mvpp2: parser fix PPPoE Message-ID: <20230329110243.GL831478@unreal> References: <20230325164105.uehseyxftzbdbppr@Svens-MacBookPro.local> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230325164105.uehseyxftzbdbppr@Svens-MacBookPro.local> Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org On Sat, Mar 25, 2023 at 05:41:05PM +0100, Sven Auhagen wrote: > In PPPoE add all IPv4 header option length to the parser > and adjust the L3 and L4 offset accordingly. > Currently the L4 match does not work with PPPoE and > all packets are matched as L3 IP4 OPT. > > Fixes: 3f518509dedc ("ethernet: Add new driver for Marvell Armada 375 network unit") > Signed-off-by: Sven Auhagen > --- > > Change from v2: > * Formal fixes > > Change from v1: > * Added the fixes tag Please add target [PATCH net ...] to the subject the patch. Thanks