From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) by dpdk.org (Postfix) with ESMTP id E64412BA5 for ; Sun, 22 Apr 2018 17:10:54 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 8C31B20FF8; Sun, 22 Apr 2018 11:10:54 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Sun, 22 Apr 2018 11:10:54 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fridaylinux.org; h=cc:date:from:in-reply-to:message-id:references:subject:to :x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=WbsHqEV0MZx6p3nkC pjEWNP9ES6cZooOEkW2NDNbIls=; b=NugCiqCXcFVzyfEyYHvBdcqZ17SMf85EQ SIu2329byuLPZX8H05TPoAjc+INqAffh8/UeI9NKenr7GX+al6lSfZuoxn7X/5yp b65+vDlXnMU7LdrVXaiOVpikSKbMCUqW4xiIMzJg8XdiA9+UGnRCisPtsamC1Pbc y+xa5FtkolnFCHAwapNqM5EAgEJmn64K35RizPlsV+r5S144Ro29vMhOIi0aF6pE HFkaoM2en2uc0+fO1ej1mTLPqP1LcAl4+90zlyV09mPgJI0MSU/zoujhrd3/GZMS zsEwnVN2xwUx67d4dAdKgad6zCa3j67hf3mVj2bHJR310R5CBLFhQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:date:from:in-reply-to:message-id :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc; s= fm2; bh=WbsHqEV0MZx6p3nkCpjEWNP9ES6cZooOEkW2NDNbIls=; b=L8uedyRS eA2f85HwE8wmGEEbV5X7C9OmZOCuy3Nkbwt7joMI1lWIXyOmRX4V5nz5mhABhxBV 2X6yJmuazdBa4pEUSPgkdsvQlaEXkrCEcpuYSpHoZB1/uJ4+iSsQmdfSI1DUsIfA hjLYhud77Zpm/3al33/EdbKh4cYLEGR3+0uO7vWMGU7ufAmm6oeIhEbx7URgGKcA d7oeoc8KSWt3ecwwR5enGkxa6r2zvP9Iu8eyVPRA+yy/+B/VMlkOh/ja65Sw4EDJ sf76/foBM2dhQppS3F7tTyc1Fpin8mPKTnuStH38HX6FaUhG8bWYJF0iwwp+lQ+a tClunjqlCURD2A== X-ME-Sender: Received: from yuanhanliu-NB0.tencent.com (unknown [223.74.148.66]) by mail.messagingengine.com (Postfix) with ESMTPA id 171B210253; Sun, 22 Apr 2018 11:10:52 -0400 (EDT) From: Yuanhan Liu To: Santosh Shukla Cc: dpdk stable Date: Sun, 22 Apr 2018 23:09:07 +0800 Message-Id: <20180422150949.17523-17-yliu@fridaylinux.org> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20180422150949.17523-1-yliu@fridaylinux.org> References: <20180422150949.17523-1-yliu@fridaylinux.org> Subject: [dpdk-stable] patch 'net/octeontx: fix uninitialized variable in port open' has been queued to LTS release 17.11.2 X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Apr 2018 15:10:55 -0000 Hi, FYI, your patch has been queued to LTS release 17.11.2 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 04/29/18. So please shout if anyone has objections. Thanks. --yliu --- >>From 1e2c25e769ad37cfef4219ab2b32db1e6a4f744e Mon Sep 17 00:00:00 2001 From: Santosh Shukla Date: Tue, 20 Feb 2018 22:44:16 +0530 Subject: [PATCH] net/octeontx: fix uninitialized variable in port open [ upstream commit a371fd7903f99753d535b31dbad2adcc33dcdd5c ] Coverity issue: 195045 Fixes: f18b146c498d ("net/octeontx: create ethdev ports") Signed-off-by: Santosh Shukla --- drivers/net/octeontx/octeontx_ethdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/octeontx/octeontx_ethdev.c b/drivers/net/octeontx/octeontx_ethdev.c index 890c7ea19..ec03e4c8a 100644 --- a/drivers/net/octeontx/octeontx_ethdev.c +++ b/drivers/net/octeontx/octeontx_ethdev.c @@ -127,7 +127,7 @@ octeontx_port_open(struct octeontx_nic *nic) int res; res = 0; - + memset(&bgx_port_conf, 0x0, sizeof(bgx_port_conf)); PMD_INIT_FUNC_TRACE(); res = octeontx_bgx_port_open(nic->port_id, &bgx_port_conf); -- 2.11.0