From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 72848A0487 for ; Thu, 4 Jul 2019 23:08:41 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 3324C5B3A; Thu, 4 Jul 2019 23:08:41 +0200 (CEST) Received: from out5-smtp.messagingengine.com (out5-smtp.messagingengine.com [66.111.4.29]) by dpdk.org (Postfix) with ESMTP id 184A44C99; Thu, 4 Jul 2019 23:08:38 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id A6E2121E3E; Thu, 4 Jul 2019 17:08:37 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Thu, 04 Jul 2019 17:08:37 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding:content-type; s=mesmtp; bh=1qTGoiPk1pVAw82fLJiZeXb85Dy7PIVeodhwJauyTzI=; b=sOD4FxlM4SNu 2wDLFDZLUnCsXY7EU9OJQd3noMuEyP3aZwJSqJ13hN/70Y4SDgqOcQvHmUKNslnD fMz9qrBbSBIvzzlGcZIog9D+1fZEWornWMA1QTLtn7uYVIrrJlQoY+A4GrIVmmx2 Qw9InDVhGI9t64XlPKOTI862O9fjMhk= 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-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm3; bh=1qTGoiPk1pVAw82fLJiZeXb85Dy7PIVeodhwJauyT zI=; b=OcVtguRnZriAWSiYP0rXDi4dByU7SWbAmAelOSu11UTWSmvJKaGNN9E/+ L5h6mHdmfyv7Rz6nmeTi45T3kiSMLWKlxfTYrxsuNTLT5E5SD7S+3Xhwnp0rDCqG tza57Fmg7EFOiz4jEq4FamfQ6MFjx8ofFxkgZ0YX9GE3LAidEs/oUla6tUYVdt8Q ZnWrIWD/75TRmAxt88YQ8SsZOHGF1zwBfNAD253YSPRRdpZe+/QkWTHYaB7lafkL viM6F4ZcfcPI5PY7Dr89t+8lRmD9xMCNu2x9YhShfFL4SZUn74pgzc+Mym5Ttryq qichKDiWmp0jDaRH5/ZTqulOS+D7A== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgeduvddrfedvgdduiedtucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmne cujfgurhephffvufffkfgjfhgggfgtsehtufertddttddvnecuhfhrohhmpefvhhhomhgr shcuofhonhhjrghlohhnuceothhhohhmrghssehmohhnjhgrlhhonhdrnhgvtheqnecukf hppeejjedrudefgedrvddtfedrudekgeenucfrrghrrghmpehmrghilhhfrhhomhepthhh ohhmrghssehmohhnjhgrlhhonhdrnhgvthenucevlhhushhtvghrufhiiigvpedt X-ME-Proxy: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 83E0D380075; Thu, 4 Jul 2019 17:08:36 -0400 (EDT) From: Thomas Monjalon To: Timothy Redaelli Cc: dev@dpdk.org, David Marchand , dpdk stable , Luca Boccassi Date: Thu, 04 Jul 2019 23:08:35 +0200 Message-ID: <2821464.DetTMxLlRs@xps> In-Reply-To: References: <0c31ecf46994f3c582f14842446c538ebe0622d9.1559301086.git.tredaelli@redhat.com> <80ff3b4893cece8060d4fd7d783783a70e54e49d.camel@debian.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-stable] [dpdk-dev] [PATCH] usertools: Fix clearing any old data 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: , Errors-To: stable-bounces@dpdk.org Sender: "stable" 04/06/2019 09:20, David Marchand: > On Fri, May 31, 2019 at 3:37 PM Luca Boccassi wrote: > > On Fri, 2019-05-31 at 13:11 +0200, Timothy Redaelli wrote: > > > Currently clear_data (dpdk-devbind.py) doesn't work as expected since > > > "global devices" is missing and so "devices" is considered a local > > > variable. > > > > > > This commit changes "clear_data" function in order to really clear > > > devices by adding "global devices". > > > > > > CC: > > > stable@dpdk.org > > Fixes: ea9f00f7289a ("usertools: refactor NIC and crypto binding details") > > > > Signed-off-by: Timothy Redaelli > > > Acked-by: Luca Boccassi > > Reviewed-by: David Marchand Applied, thanks