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 07F2C45E94; Fri, 13 Dec 2024 22:50:25 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id EC39140E26; Fri, 13 Dec 2024 22:50:24 +0100 (CET) Received: from smtp.eurecom.fr (smtp.eurecom.fr [193.55.113.210]) by mails.dpdk.org (Postfix) with ESMTP id 3CDAB4068E; Fri, 13 Dec 2024 22:50:24 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=eurecom.fr; i=@eurecom.fr; q=dns/txt; s=default; t=1734126626; x=1765662626; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=iQ5Hpl+ateJXaqQky8qIDSYnBk/flnzg4LNGVCbv5Ag=; b=hnMQp7O7ZRwjYX0C8t+GpfjBw3OvdcKIuF58Ooj5mrADjUSl2VzCFdG8 oKqCwexYXZzwtvm7ZoRT+6TtdtNkC5M/r4SyYfWvUC1VLDXPn9HFF66DT ze9pEmvfUowpNgTeJwsH5T6MoB6X9AkLTijF8256RfQ52i+yc4rMySMBe 0=; X-CSE-ConnectionGUID: cAc/fubHQ5OWrA++mjKLHQ== X-CSE-MsgGUID: cHykdlT8QDOlLG94wfHrng== X-IronPort-AV: E=Sophos;i="6.12,232,1728943200"; d="scan'208";a="28178940" Received: from waha.eurecom.fr (HELO smtps.eurecom.fr) ([10.3.2.236]) by drago1i.eurecom.fr with ESMTP; 13 Dec 2024 22:50:25 +0100 Received: from localhost.localdomain (88-183-119-157.subs.proxad.net [88.183.119.157]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtps.eurecom.fr (Postfix) with ESMTPSA id C69A62C0F; Fri, 13 Dec 2024 22:50:23 +0100 (CET) From: Ariel Otilibili To: dev@dpdk.org Cc: Thomas Monjalon , David Marchand , Andrew Rybchenko , Ori Kam , stable@dpdk.org, Ariel Otilibili Subject: [PATCH 1/2] examples/flow_filtering: remove unused variable Date: Fri, 13 Dec 2024 22:41:54 +0100 Message-ID: <20241213214951.61974-2-otilibil@eurecom.fr> X-Mailer: git-send-email 2.47.1 In-Reply-To: <20241213214951.61974-1-otilibil@eurecom.fr> References: <20241213214951.61974-1-otilibil@eurecom.fr> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Coverity issue: 451221 Fixes: 16158f3490 ("examples/flow_filtering: introduce use cases snippets") Cc: Ori Kam Cc: stable@dpdk.org Signed-off-by: Ariel Otilibili --- examples/flow_filtering/snippets/snippet_match_ipv4.c | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/flow_filtering/snippets/snippet_match_ipv4.c b/examples/flow_filtering/snippets/snippet_match_ipv4.c index 808208e7b0..65fb045e8b 100644 --- a/examples/flow_filtering/snippets/snippet_match_ipv4.c +++ b/examples/flow_filtering/snippets/snippet_match_ipv4.c @@ -76,7 +76,6 @@ snippet_ipv4_flow_create_actions_template(uint16_t port_id, struct rte_flow_erro .ingress = 1, }; - tactions[0].type = RTE_FLOW_ACTION_TYPE_QUEUE; tactions[0].type = RTE_FLOW_ACTION_TYPE_END; /* This sets the masks to match the actions, indicating that all fields of the actions -- 2.47.1