From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id 230F81B8A1; Tue, 24 Oct 2017 23:58:48 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id B242920AF0; Tue, 24 Oct 2017 17:58:47 -0400 (EDT) Received: from frontend2 ([10.202.2.161]) by compute1.internal (MEProxy); Tue, 24 Oct 2017 17:58:47 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=mesmtp; bh=iejYlBq7wWymWSKyF3hpH+qQWC gPGvZ+aRkYRsuhMTE=; b=GstRH+a6rSMH3tjIj8yelYsRecnon7jq9kZuunDPoC GTu4Y1ZRTDZKXPv7SZm4zUwQ3Mzfj0ULcFCzeNq/FPXSw3DlUnnKGC0aMnoNpcck y79i7QxAQfOxjlMmtGWjUThPyANEVi7SPEEC2nnSA6jV0Qbw/FiT9QTQUGvb2jak 4= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=iejYlB q7wWymWSKyF3hpH+qQWCgPGvZ+aRkYRsuhMTE=; b=VUb/1xaeiPcNeA3gOgOgdK 7zkw07ENyzHeC+IEl2qpiCIgH6wu5Dz1ognaQzO0RJR7CBELSeAwvYqwueGa5Ilj k5UCXx6AHo7BojfvWd6W5adQvHmCUIhbewtzmp0g2iBQxHweWX7C0lhD0Qr0sEr9 snYzPqXp1JiIq9fsTeUGh8wWDiA3h9IEyDMPLaL+bN1XMiPB1z+1uD+/R//t9C1e CZUdkDa88Bc1z39Rh7FRCWTmXzjYlsx+crhjQJxxIoOwLmhKeAT+myoVbi8aEvRn bIMhyqrEJLwhCbHJXroxo26NralbtnsODE0sYlRgdjd1DQEPxWTCL01XtFGWZ1cg == X-ME-Sender: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 5DAD8247AD; Tue, 24 Oct 2017 17:58:47 -0400 (EDT) From: Thomas Monjalon To: Jasvinder Singh Cc: dev@dpdk.org, cristian.dumitrescu@intel.com, ferruh.yigit@intel.com, john.mcnamara@intel.com, stable@dpdk.org Date: Tue, 24 Oct 2017 23:58:46 +0200 Message-ID: <1676437.IiOK3OhmL8@xps> In-Reply-To: <20171024090957.114392-1-jasvinder.singh@intel.com> References: <20171023103600.89883-1-jasvinder.singh@intel.com> <20171024090957.114392-1-jasvinder.singh@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] examples/qos_sched: fix uninitialized scalar variable X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Oct 2017 21:58:48 -0000 24/10/2017 11:09, Jasvinder Singh: > Fix problem with uninitialized rx/tx deferred_start flags of the struct > rte_eth_rxconf/txconf by initializing with 0 value (deferred start of > the rx/tx queues is turned off). This setting allows device rx/tx > queues to start with rte_eth_dev_start(). > > Coverity issue: 194999, 195009 (Uninitialized scalar variable) > Fixes: de3cfa2c9823 ("sched: initial import") > Cc: stable@dpdk.org > > Signed-off-by: Jasvinder Singh Applied, thanks