From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <thomas.monjalon@6wind.com>
Received: from mail-wm0-f54.google.com (mail-wm0-f54.google.com [74.125.82.54])
 by dpdk.org (Postfix) with ESMTP id AD07E5A4E
 for <dev@dpdk.org>; Mon, 13 Jun 2016 22:23:05 +0200 (CEST)
Received: by mail-wm0-f54.google.com with SMTP id n184so93906683wmn.1
 for <dev@dpdk.org>; Mon, 13 Jun 2016 13:23:05 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=6wind-com.20150623.gappssmtp.com; s=20150623;
 h=from:to:cc:subject:date:message-id:user-agent:in-reply-to
 :references:mime-version:content-transfer-encoding;
 bh=pzklbMb+3E9wsWdW1AcqEwcC7NC3erNvv01NlfIWnjU=;
 b=Sdou6xm3DyjivDaUFGkXcD68DXoKqrVwNP32Vtoq2NZduRFXm358s2MJ4bBNly+Gav
 F/CwP7HGFzqsWF2S8jUTmBSTws051xlhyMTCgt1ZfcSFaqgit2JcB320chUxxuSvXc1q
 6JyyantN1c+TpJTX113Q+v3kvM/TGiTb7Mz6L5KgP4oFKK3ZBRxdpmkbx+pPg50qniXT
 lmINvEFuI1RYXPWnHA94hmNyjcdcsPG10p6K3hl/IuBW8ZXbsGj9QRUU7ACzH5L3jt8N
 widg3Yk8MjtWbGqpKPQw/GCWXlTx8LfzGNr8MWxC8IOAk94Yn4KwtuiYClLtjAexW76d
 sKcw==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20130820;
 h=x-gm-message-state:from:to:cc:subject:date:message-id:user-agent
 :in-reply-to:references:mime-version:content-transfer-encoding;
 bh=pzklbMb+3E9wsWdW1AcqEwcC7NC3erNvv01NlfIWnjU=;
 b=P4b/fu0KHFk3UHkLnk8ofjha1/qjSDKxXEQQtJqAdIHhXeWbU7OuHfmvU0qKt58xKW
 hsT+S7fzqZsfG4c7XmwSxllMAjWRrj6m23rviNPJ7LjPGtSvQX0ViVkYEItTX71tSJr8
 BgPccMPbURJrS0dQyIinw7LmmviTPfA8O06He0I7OoYSYULEBib7P6i/t8Wd2VAP5iV5
 WD2gLmb/BcylHcLHAgWQVcI7MFvzMzeuF5eZ+kpKpkPB5T5jgfrA3HSr68f688IYzZHZ
 /yP30fdy3VLpi40r5z1o04XgPUD0IWO/+JsDw46bcBHxKktzfrEYW6xAcxQ4jWMOWjM+
 ITSw==
X-Gm-Message-State: ALyK8tJOLcPai8FSFeIjH3BRHKP/I30nRXdY52R5soVAPYr3TCMKD/+OVhRp5sxzxfNsWUun
X-Received: by 10.28.169.66 with SMTP id s63mr1234106wme.87.1465849385425;
 Mon, 13 Jun 2016 13:23:05 -0700 (PDT)
Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184])
 by smtp.gmail.com with ESMTPSA id b200sm429369wmb.9.2016.06.13.13.23.04
 (version=TLSv1/SSLv3 cipher=OTHER);
 Mon, 13 Jun 2016 13:23:04 -0700 (PDT)
From: Thomas Monjalon <thomas.monjalon@6wind.com>
To: David Hunt <david.hunt@intel.com>
Cc: dev@dpdk.org, Olivier Matz <olivier.matz@6wind.com>
Date: Mon, 13 Jun 2016 22:23:03 +0200
Message-ID: <18350168.SiKNmCWAYm@xps13>
User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; )
In-Reply-To: <574BFE39.7030402@6wind.com>
References: <1464267068-56805-1-git-send-email-david.hunt@intel.com>
 <1464272154-94512-1-git-send-email-david.hunt@intel.com>
 <574BFE39.7030402@6wind.com>
MIME-Version: 1.0
Content-Transfer-Encoding: 7Bit
Content-Type: text/plain; charset="us-ascii"
Subject: Re: [dpdk-dev] [PATCH v2] test: fix mempool perf test enq_count
	wraparound of 32-bit uint
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: patches and discussions about DPDK <dev.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Mon, 13 Jun 2016 20:23:05 -0000

> > recent CPU's can easily wrap around a 32-bit unsigned int in
> > the mempool perf test. Increase to a 64-bit uint.
> > 
> > v2: change from %lu to %"PRIu64"
> > 
> > Signed-off-by: David Hunt <david.hunt@intel.com>
> 
> Acked-by: Olivier Matz <olivier.matz@6wind.com>

Applied, thanks