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 F1EAFEB64DC for ; Mon, 17 Jul 2023 05:50:13 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231313AbjGQFuN (ORCPT ); Mon, 17 Jul 2023 01:50:13 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43658 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230006AbjGQFuJ (ORCPT ); Mon, 17 Jul 2023 01:50:09 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 31B0710E for ; Sun, 16 Jul 2023 22:50:09 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id AFA1060F28 for ; Mon, 17 Jul 2023 05:50:08 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 49A20C433C8; Mon, 17 Jul 2023 05:50:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1689573008; bh=pgl6PJoOSONOm5ZYiNl1/zgwYMgt+PVFhF2XdFTsRmg=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=drfHxyfpLBlexRaMzwD9vdni2tKVQrVyWjmJvOIaIaC570HF8AEPx+DyyiiGtpLXz ZaLQQEbtjlNnsS+0HqVSwroADG21yK5vBCK34CjPee33i4hzAt6mlv0GZspiVC1S+t a51cxJs/j8CriNkDmRX/IcSzaktKqC0BNjQ+T3S1bKeFbCNe3ku3krbEMARFPHiaRG rvW0mKAGG77yyBvKmofS+STs8waUaACFuLqgh5hcjBRb5WvUQMy+4VJAJlAukxf/8/ 9B4Jp3LrbtuA6KoKJzTQwC9/hGBj9XCsRdKiemsQJaXyvxkDAgLSEG5honTsPA7UrK S2TEBI9TS7xCg== Date: Mon, 17 Jul 2023 08:50:04 +0300 From: Leon Romanovsky To: Suman Ghosh Cc: sgoutham@marvell.com, gakula@marvell.com, sbhatta@marvell.com, hkelam@marvell.com, davem@davemloft.net, edumazet@google.com, kuba@kernel.org, pabeni@redhat.com, netdev@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [net-next PATCH V2] octeontx2-af: Install TC filter rules in hardware based on priority Message-ID: <20230717055004.GC9461@unreal> References: <20230716182649.2467419-1-sumang@marvell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230716182649.2467419-1-sumang@marvell.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sun, Jul 16, 2023 at 11:56:49PM +0530, Suman Ghosh wrote: > As of today, hardware does not support installing tc filter > rules based on priority. This patch adds support to install > the hardware rules based on priority. The final hardware rules > will not be dependent on rule installation order, it will be strictly > priority based, same as software. > > Signed-off-by: Suman Ghosh > --- > Changes since v1: > - Rebased the patch on top of current 'main' branch And how this patch is different from another which was sent two minutes before this one? https://lore.kernel.org/netdev/20230716182442.2467328-1-sumang@marvell.com/ Thanks