From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <thomas.monjalon@6wind.com>
Received: from mail-wm0-f43.google.com (mail-wm0-f43.google.com [74.125.82.43])
 by dpdk.org (Postfix) with ESMTP id 7EA9E2952
 for <dev@dpdk.org>; Sun, 13 Mar 2016 16:25:04 +0100 (CET)
Received: by mail-wm0-f43.google.com with SMTP id n186so76480882wmn.1
 for <dev@dpdk.org>; Sun, 13 Mar 2016 08:25:04 -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:organization:user-agent
 :in-reply-to:references:mime-version:content-transfer-encoding;
 bh=ddCxiZEyZcmZ9HrAtDf32WUMOHTm51R7dPnB+olEGRg=;
 b=v9HosMl8f1Fhqe4bd9LQ0q4rPGzh0yB5rwGI+lr+DLPaP1kUT3O5D8Gmjbljdud2ra
 WWl3kd6qXclKQGPLvZH01A4mkukCiL3+Ozf6OKhDTpP55wzJL46hYp9mbUHva8We2gfQ
 6tYiTR2c92+h1rdAmEb7mkT2P+U4yZLBf6+i7/+4340ERs7sPnpq5ctVQyv9mz6anRw5
 0rHCmjCYo4PcLvo1p5s2WnkORtY4albVS2qlRpdCTtVWX7/W0jm3Y/jKjzFtG98eX2Od
 EHLxD7J4OvDsiNg60u3W7vRLLYV9jGjJM1EIoWVNBXbg4d4tsSrh+eh2y1ClinadFVnd
 MreQ==
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:organization
 :user-agent:in-reply-to:references:mime-version
 :content-transfer-encoding;
 bh=ddCxiZEyZcmZ9HrAtDf32WUMOHTm51R7dPnB+olEGRg=;
 b=IljySuxEJiOqL83eM8F9ZtlQqDN7EdmUdlrt64gZIAK/LFQQofhC6ZlXT1wQq3s+kg
 jIHUFklvs+otXVq5Hj1AWoxpL3ga2qdCRgBPpIltLAQzCGVSdFgqSNCbT9XInR1QoSoj
 zfamcykpoDzDI0cGYf3pNLJLNud1SnQtEEN9/Z7LroFCsPTHHD0IByySXQi2co4JWkFl
 +XOsspy67DFSa3vLIjkMcCoUWu5x/Ps8ULgAJ2eQzoT6EZ1+8P1ZgdbJ5QDHIiOHCDuP
 IHmokehFx1f9NuEi5TVhIdcYcWCOy5lZNYJA3RQBmvVwZ/goghUBtHUyWzORe17pi758
 Vyxg==
X-Gm-Message-State: AD7BkJIYUrvyfzCDdWOZ4coRaNazHisygCtTdtD0HHoT5zuJu8paI94w0BEhJ4shNSVxK6mq
X-Received: by 10.28.184.148 with SMTP id i142mr13510374wmf.22.1457882704377; 
 Sun, 13 Mar 2016 08:25:04 -0700 (PDT)
Received: from xps13.localnet (91.111.75.86.rev.sfr.net. [86.75.111.91])
 by smtp.gmail.com with ESMTPSA id av3sm18135002wjc.44.2016.03.13.08.25.03
 (version=TLSv1/SSLv3 cipher=OTHER);
 Sun, 13 Mar 2016 08:25:03 -0700 (PDT)
From: Thomas Monjalon <thomas.monjalon@6wind.com>
To: Panu Matilainen <pmatilai@redhat.com>
Cc: dev@dpdk.org, "Dumitrescu, Cristian" <cristian.dumitrescu@intel.com>
Date: Sun, 13 Mar 2016 16:23:42 +0100
Message-ID: <4050353.cr1933YJAO@xps13>
Organization: 6WIND
User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; )
In-Reply-To: <3EB4FA525960D640B5BDFFD6A3D891264796AD11@IRSMSX108.ger.corp.intel.com>
References: <596c08913453daea0e9c98f25befba923a961216.1457617795.git.pmatilai@redhat.com>
 <3EB4FA525960D640B5BDFFD6A3D891264796AD11@IRSMSX108.ger.corp.intel.com>
MIME-Version: 1.0
Content-Transfer-Encoding: 7Bit
Content-Type: text/plain; charset="us-ascii"
Subject: Re: [dpdk-dev] [PATCH] pipeline: use unsigned constants for left
	shift operations
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: Sun, 13 Mar 2016 15:25:04 -0000

> > Tell the compiler to use unsigned constants for left shift ops,
> > otherwise building with gcc >= 6.0 fails due to multiple warnings like:
> > warning: left shift of negative value [-Wshift-negative-value]
> > 
> > Signed-off-by: Panu Matilainen <pmatilai@redhat.com>
> 
> Acked-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>

Applied with typo fixed, thanks