From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 3652448B69 for ; Fri, 21 Nov 2025 12:22:56 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 323DF4026F; Fri, 21 Nov 2025 12:22:56 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id ED88C4026F for ; Fri, 21 Nov 2025 12:22:54 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1763724174; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=IgSFKG2YjBErW1+unvgxkyLilmpdRSewoVApQ8K5x18=; b=Q1LWdL7o2BQf1H4JtQhrqdeDSYQN2+TwvhfQpgzZzbZ47dkwLGee/spdr6cvM3ivRnI8+h 24Swxf20MlzUiEQ8ePyxjpjdt7nAndDWcKe0zSX6+bQ/GXAtAwj9QgyiwtiwTQedFHKpVW ltzFJf4C/d7KLoEQ8a6aN1pi8+Z00+s= Received: from mx-prod-mc-05.mail-002.prod.us-west-2.aws.redhat.com (ec2-54-186-198-63.us-west-2.compute.amazonaws.com [54.186.198.63]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-220-Hf3dpjcLMe2nypBWWzAhtg-1; Fri, 21 Nov 2025 06:22:53 -0500 X-MC-Unique: Hf3dpjcLMe2nypBWWzAhtg-1 X-Mimecast-MFC-AGG-ID: Hf3dpjcLMe2nypBWWzAhtg_1763724172 Received: from mx-prod-int-01.mail-002.prod.us-west-2.aws.redhat.com (mx-prod-int-01.mail-002.prod.us-west-2.aws.redhat.com [10.30.177.4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mx-prod-mc-05.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTPS id 22DA11956089; Fri, 21 Nov 2025 11:22:52 +0000 (UTC) Received: from rh.redhat.com (unknown [10.42.28.165]) by mx-prod-int-01.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTP id D82DD30044DB; Fri, 21 Nov 2025 11:22:50 +0000 (UTC) From: Kevin Traynor To: Jiawen Wu Cc: dpdk stable Subject: patch 'net/txgbe: fix FDIR drop action for L4 match packets' has been queued to stable release 24.11.4 Date: Fri, 21 Nov 2025 11:20:15 +0000 Message-ID: <20251121112128.485623-31-ktraynor@redhat.com> In-Reply-To: <20251121112128.485623-1-ktraynor@redhat.com> References: <20251121112128.485623-1-ktraynor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.30.177.4 X-Mimecast-Spam-Score: 0 X-Mimecast-MFC-PROC-ID: tyqGmhlt2cQz8DVjePEIZ6hfxEYXi6KMPj04WwJShLg_1763724172 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit content-type: text/plain; charset="US-ASCII"; x-default=true X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Hi, FYI, your patch has been queued to stable release 24.11.4 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 11/26/25. So please shout if anyone has objections. Also note that after the patch there's a diff of the upstream commit vs the patch applied to the branch. This will indicate if there was any rebasing needed to apply to the stable branch. If there were code changes for rebasing (ie: not only metadata diffs), please double check that the rebase was correctly done. Queued patches are on a temporary branch at: https://github.com/kevintraynor/dpdk-stable This queued commit can be viewed at: https://github.com/kevintraynor/dpdk-stable/commit/4fede0826601438e4b93b62a7ccb423546ad10bf Thanks. Kevin --- >From 4fede0826601438e4b93b62a7ccb423546ad10bf Mon Sep 17 00:00:00 2001 From: Jiawen Wu Date: Mon, 27 Oct 2025 11:15:34 +0800 Subject: [PATCH] net/txgbe: fix FDIR drop action for L4 match packets [ upstream commit 3c858be4997d779a05dd32630ad57c740a2729bc ] FDIR flow rules support to drop packets without being limited to L3 packets. Remove the redundant limitation. Fixes: b973ee26747a ("net/txgbe: parse flow director filter") Signed-off-by: Jiawen Wu --- drivers/net/txgbe/txgbe_flow.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/drivers/net/txgbe/txgbe_flow.c b/drivers/net/txgbe/txgbe_flow.c index 9b7643c6e2..a6a27a298f 100644 --- a/drivers/net/txgbe/txgbe_flow.c +++ b/drivers/net/txgbe/txgbe_flow.c @@ -2840,5 +2840,4 @@ txgbe_parse_fdir_filter(struct rte_eth_dev *dev, { int ret; - struct txgbe_hw *hw = TXGBE_DEV_HW(dev); struct rte_eth_fdir_conf *fdir_conf = TXGBE_DEV_FDIR_CONF(dev); @@ -2854,10 +2853,4 @@ txgbe_parse_fdir_filter(struct rte_eth_dev *dev, step_next: - - if (hw->mac.type == txgbe_mac_raptor && - rule->fdirflags == TXGBE_FDIRPICMD_DROP && - (rule->input.src_port != 0 || rule->input.dst_port != 0)) - return -ENOTSUP; - if (fdir_conf->mode == RTE_FDIR_MODE_NONE) { fdir_conf->mode = rule->mode; -- 2.51.0 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2025-11-21 11:05:10.576114554 +0000 +++ 0031-net-txgbe-fix-FDIR-drop-action-for-L4-match-packets.patch 2025-11-21 11:05:09.421200990 +0000 @@ -1 +1 @@ -From 3c858be4997d779a05dd32630ad57c740a2729bc Mon Sep 17 00:00:00 2001 +From 4fede0826601438e4b93b62a7ccb423546ad10bf Mon Sep 17 00:00:00 2001 @@ -5,0 +6,2 @@ +[ upstream commit 3c858be4997d779a05dd32630ad57c740a2729bc ] + @@ -10 +11,0 @@ -Cc: stable@dpdk.org @@ -18 +19 @@ -index 25cf0db316..7cf079a1cf 100644 +index 9b7643c6e2..a6a27a298f 100644 @@ -31 +32 @@ -- if (hw->mac.type == txgbe_mac_sp && +- if (hw->mac.type == txgbe_mac_raptor &&