From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <thomas@monjalon.net>
Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com
 [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id 61F69A56E;
 Wed, 24 Jan 2018 19:07:32 +0100 (CET)
Received: from compute1.internal (compute1.nyi.internal [10.202.2.41])
 by mailout.nyi.internal (Postfix) with ESMTP id F040B22435;
 Wed, 24 Jan 2018 13:07:31 -0500 (EST)
Received: from frontend1 ([10.202.2.160])
 by compute1.internal (MEProxy); Wed, 24 Jan 2018 13:07:31 -0500
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=WLmL0tWziaENScVwwWwcdC8Ysl
 scRsvgfAe5Xd3XnHI=; b=aFJOb4zcpqeP14+UnwbcQZoFiFhTYWGzQQYWMOjSoE
 ctL5BXS2gsquwg/X2WNK7lhZArx8sUmVJMW03XY66+CnFpcAtwyGWoBdi0oLtgW4
 Phl1mucbR0kSZjuefZnKk/CQD0omqW3tyxaMjDalNKF8UAnyVfA2FXwy3ktumFdd
 c=
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=WLmL0t
 WziaENScVwwWwcdC8YslscRsvgfAe5Xd3XnHI=; b=W9jyvgAuzm5SCdu6ni2bHF
 UnIctyX8ZMeQkBGXavDzIu6l6K06WWvqIfZwIr4JV/6RK5TQTabsNDbhNoityrsI
 K/99dDQcjwNR+1WefJ2im8g2sRB+rAimYp975Qh2LtJRo9TR5teLMuITzqYMEjgR
 KjVJ5oNkr5+xC7K240/cwcOAl7q/wiblIUpRrAEWGM9iKIpvL+EGg34vkuwNyF6B
 5V5WptK2/SAN/cKSXOQe7Zt+aYXFfxKrtrT1c17agIf7YFGviRA/DQE8mCRPDDuy
 4M8bEXGq4fVKzvZC05563oOtTt9lYNDGccPmAYNHFaJD3qoNVOKd8UAk6HJIgGmQ
 ==
X-ME-Sender: <xms:Y8toWiVv8tEPNgjGkoVNtL-1Y6cJDKQ1f08bFs00RE19J7YpDz0lNw>
Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184])
 by mail.messagingengine.com (Postfix) with ESMTPA id 9EE677E3D4;
 Wed, 24 Jan 2018 13:07:31 -0500 (EST)
From: Thomas Monjalon <thomas@monjalon.net>
To: Ophir Munk <ophirmu@mellanox.com>
Cc: dev@dpdk.org, Matan Azrad <matan@mellanox.com>,
 Olga Shern <olgas@mellanox.com>, Adrien Mazarguil <adrien.mazarguil@6wind.com>,
 "stable@dpdk.org" <stable@dpdk.org>
Date: Wed, 24 Jan 2018 19:06:50 +0100
Message-ID: <8253326.qjjPtSrlQQ@xps>
In-Reply-To: <HE1PR0502MB38048D0A14BFAE768D09787AD2E20@HE1PR0502MB3804.eurprd05.prod.outlook.com>
References: <1516792792-10119-1-git-send-email-ophirmu@mellanox.com>
 <1516803133-17529-1-git-send-email-ophirmu@mellanox.com>
 <HE1PR0502MB38048D0A14BFAE768D09787AD2E20@HE1PR0502MB3804.eurprd05.prod.outlook.com>
MIME-Version: 1.0
Content-Transfer-Encoding: 7Bit
Content-Type: text/plain; charset="us-ascii"
Subject: Re: [dpdk-stable] [dpdk-dev] [PATCH v2] net/vdev_netvsc: fix build
	using C11 mode and pedantic
X-BeenThere: stable@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: patches for DPDK stable branches <stable.dpdk.org>
List-Unsubscribe: <https://dpdk.org/ml/options/stable>,
 <mailto:stable-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/stable/>
List-Post: <mailto:stable@dpdk.org>
List-Help: <mailto:stable-request@dpdk.org?subject=help>
List-Subscribe: <https://dpdk.org/ml/listinfo/stable>,
 <mailto:stable-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Wed, 24 Jan 2018 18:07:32 -0000

24/01/2018 15:45, Matan Azrad:
> Hi Ophir
> 
> From: Ophir Munk, Wednesday, January 24, 2018 4:12 PM
> > Remove CFLAGS -std=c11 and -pedantic in order to guarantee a successful
> > vdev_netvsc compilation on old Linux distributions.
> > Otherwise old GCC compilers may complain as follows:
> > cc1: error: unrecognized command line option -std=c11
> > 
> > Fixes: 6086ab3bb3d2 ("net/vdev_netvsc: introduce Hyper-V platform
> > driver")
> > Cc: stable@dpdk.org
> 
> No need to backport this fix.
> 
> > Signed-off-by: Ophir Munk <ophirmu@mellanox.com>
> 
> Besides that,
> Acked-by: Matan Azrad <matan@mellanox.com>

Applied, thanks