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 EB45745D01; Thu, 14 Nov 2024 08:39:07 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B9ACB42DAC; Thu, 14 Nov 2024 08:39:03 +0100 (CET) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id E24EB427E1; Thu, 14 Nov 2024 08:39:01 +0100 (CET) Received: from pps.filterd (m0431383.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.18.1.2/8.18.1.2) with ESMTP id 4AE69hdr006483; Wed, 13 Nov 2024 23:39:01 -0800 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to; s=pfpt0220; bh=l 93EOU6/0kgzMP+rKYyqtuYyMgiQp2YmqFzBXUAkK/4=; b=QbSnaPaH5OrwrvjM4 B/3onBgIqv2JGovKo6rw9ObGDZBoTijW2HgQmwXSlkZRs75C/3V0jJLrEsCpTJA5 pVh9zLj2QYV6ZLe95jg9bZRedsSwu77wVSAsMaImO2KgPgfq0bTK/6Y8+O/diKgS KNP29mjw0fkogS4a1zKWcT3K/WSUE3jyjcy9MOFgqB5QBmquwwu5OG5j1+wyucJC KhFMYFv6MvHVmXkjFkMgTFHNp4v+tv2anzL9X4vU3uaunZW3P4Y3DnA15GbZVNNE Ow4TwkyB8zhAwQ/v7pqKsdYT4uDgXLj9fIwQbttFXY6py0vHvRAKXD1mTEDd8JNH RIm0Q== Received: from dc6wp-exch02.marvell.com ([4.21.29.225]) by mx0b-0016f401.pphosted.com (PPS) with ESMTPS id 42wbprgq15-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Wed, 13 Nov 2024 23:39:00 -0800 (PST) Received: from DC6WP-EXCH02.marvell.com (10.76.176.209) by DC6WP-EXCH02.marvell.com (10.76.176.209) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1544.4; Wed, 13 Nov 2024 23:39:00 -0800 Received: from maili.marvell.com (10.69.176.80) by DC6WP-EXCH02.marvell.com (10.76.176.209) with Microsoft SMTP Server id 15.2.1544.4 via Frontend Transport; Wed, 13 Nov 2024 23:39:00 -0800 Received: from cavium-3070-BM23.. (unknown [10.28.34.25]) by maili.marvell.com (Postfix) with ESMTP id EBF4C3F7057; Wed, 13 Nov 2024 23:38:57 -0800 (PST) From: To: Liron Himi , Jerin Jacob CC: , , Sunil Kumar Kori , Subject: [PATCH 2/3] regex/cn9k: fix build warnings on ubuntu 24.04 Date: Thu, 14 Nov 2024 13:08:15 +0530 Message-ID: <20241114073849.18752-2-skori@marvell.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20241114073849.18752-1-skori@marvell.com> References: <20241114073849.18752-1-skori@marvell.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-GUID: Io96OF6TPe9FGlzyWKQKWKwUuvKd-ZQF X-Proofpoint-ORIG-GUID: Io96OF6TPe9FGlzyWKQKWKwUuvKd-ZQF X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.293,Aquarius:18.0.687,Hydra:6.0.235,FMLib:17.0.607.475 definitions=2020-10-13_15,2020-10-13_02,2020-04-07_01 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 From: Sunil Kumar Kori Bugzilla ID: 1513 Fixes: 72c00ae9dba7 ("regex/cn9k: use cnxk infrastructure") Cc: stable@dpdk.org Signed-off-by: Sunil Kumar Kori --- drivers/regex/cn9k/cn9k_regexdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/regex/cn9k/cn9k_regexdev.c b/drivers/regex/cn9k/cn9k_regexdev.c index aa809ab5bf..e635980183 100644 --- a/drivers/regex/cn9k/cn9k_regexdev.c +++ b/drivers/regex/cn9k/cn9k_regexdev.c @@ -271,7 +271,7 @@ static inline int ree_enqueue(struct roc_ree_qp *qp, struct rte_regex_ops *op, struct roc_ree_pending_queue *pend_q) { - union roc_ree_inst inst; + union roc_ree_inst inst = {0}; union ree_res *res; uint32_t offset; -- 2.43.0