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 8E1995951 for ; Tue, 2 May 2017 00:17:21 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 10ACD209D8; Mon, 1 May 2017 18:17:21 -0400 (EDT) Received: from frontend2 ([10.202.2.161]) by compute1.internal (MEProxy); Mon, 01 May 2017 18:17:21 -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:x-sasl-enc; s=mesmtp; bh=L4aTCHvFCN56p/k v88mHTakHsoZvkPt9poIBcsVHBlE=; b=VU6CLmoulnL1TrwS7WtwdIH5qwum7JA 6q3B2AFqz3Flq3L8UVcDNchfjpz32+wWv4P5Em1mZ95HuGJUXeGod9nswSbd2L5g wl7UG+yoqsvZzamCcvMwhZoEEtJvPkidtLgDz6uL6/gIfte7cdLevl8vcX1IQlPL hjzhoZ3rvdi8= 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:x-sasl-enc; s= fm1; bh=L4aTCHvFCN56p/kv88mHTakHsoZvkPt9poIBcsVHBlE=; b=SSDlSEJz 0r2vHAINv/LAgq+l0rcDDetzI1zXvS1gVXei9Eb95paDcqUbPHCNFAySiiATr71a BY+aNOSAMjCuOinhONb77xw6l1db+Ome4tfW9AJorD7bXWzWRVfSyv95q6hqm7KU 3el2UwUd3S7/ZE/WOGmXOGeywyT7Z0SGQDjjYQZrrVPwwemUgrf+Dgm9B2aByKE7 9YkFVRM0arGumIm9DcuKQLQlMOTCpqLMcnDiybE8WxLUQaXkDxFu47NV4tmLZMtH 5RsCKOME0b4B3IuDJyp91kCWGjH2wtUu+20RGYiYDPVIP01Tx+CXTk5ckEcj9Khb H2M2EzMubhXRRQ== X-ME-Sender: X-Sasl-enc: sMCXt0LTFFEIEjxcKIlWUkwtNGCq9rGeptaQuYT7Lrsb 1493677040 Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id B892E24731; Mon, 1 May 2017 18:17:20 -0400 (EDT) From: Thomas Monjalon To: gowrishankar muthukrishnan Cc: dev@dpdk.org, Andriy Berestovskyy Date: Tue, 02 May 2017 00:17:19 +0200 Message-ID: <2658479.cmHoMQEKkW@xps> In-Reply-To: <1234535c-4633-8556-47ba-f4b8219c7f55@linux.vnet.ibm.com> References: <20170430141140.7865-1-thomas@monjalon.net> <1234535c-4633-8556-47ba-f4b8219c7f55@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] usertools: fix CPU layout with python 3 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: Mon, 01 May 2017 22:17:21 -0000 01/05/2017 08:29, gowrishankar muthukrishnan: > On Sunday 30 April 2017 07:41 PM, Thomas Monjalon wrote: > > These differences in Python 3 were causing errors: > > - xrange is replaced by range > > - dict values are a view (instead of list) > > - has_key is removed > Thanks Thomas. > > Please include minor correction in your patch as below. > > Fixes: deb87e6777c0 ("usertools: use sysfs for CPU layout") > > Fixes: 63985c5f104e ("usertools: fix CPU layout for more than 2 threads") > > > > Signed-off-by: Thomas Monjalon Applied with suggested change