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 0B05E235 for ; Tue, 21 Nov 2017 14:31:46 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id B482A207FE; Tue, 21 Nov 2017 08:31:45 -0500 (EST) Received: from frontend2 ([10.202.2.161]) by compute1.internal (MEProxy); Tue, 21 Nov 2017 08:31:45 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fridaylinux.org; h=cc:date:from:in-reply-to:message-id:references:subject:to :x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=VXOk14qo1BBwL1D40 61ORiGNYCmRMPW538NojBKriiU=; b=KXa3OHbc+tG7MY/FReq3hCORrokpapiBE qdoy3OTvxdPMucXYSaCP4GBB3USUvehOIU8FtMuSk2ClS+SyRHV7XEHNHtrRkAaj mNJoB4FQWZhBK5u3/wrBBGXF3XgmdxozQJN3QcKnEdPdh2lIUBwgcPi/mC8JdHx1 Mj0AChOjhPoFN7o/oEjno2xS/KlQ1i4MLXoTee+Iwmde2kjH7DZ0Fo+337H0qwSI 7LJO7KX7YBCAzPZPHDp+UnfCSkRY56W9Hc1nj+B/ExjieC4AdEUgzbBP2Um7lPwd 03FIbrYa6Bt7iIGZ+bLkQoFhjZtlct028+mDeajJ2eR+wyLqv+syg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:date:from:in-reply-to:message-id :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc; s= fm1; bh=VXOk14qo1BBwL1D4061ORiGNYCmRMPW538NojBKriiU=; b=sOpFSnV0 0FmnL9L70X1jYI720Cyr4QGEut3kmuB/1yHYfU2fjOKuC8vhFDGDBAUpCU7HhgX4 q6A0GF832pPlqTtJVNBbCF2sQFvRtIuz1NxKVOobd0T86kMLU37Li49pSDGge4l0 NSQjZitSVb6mp7kpD01O6pdfcclIg3tBq1H6W+jwnKQnhzKG7+gfRhM7voHcRd37 yiCxMdjoBZf7dMI5/nFgpgh2lOX+ddcw/23XYNl/S6EhX50c5/hC18CWc77BxEq0 5eixaNMn+yiYbgbespGOItyx6EEfhEVBxR/aMnfMXoFBEFWEUWcFi+Smv6vQbvWw y/iLUnMwqvPiMQ== X-ME-Sender: Received: from localhost.localdomain (unknown [180.158.62.0]) by mail.messagingengine.com (Postfix) with ESMTPA id CD5FA24631; Tue, 21 Nov 2017 08:31:40 -0500 (EST) From: Yuanhan Liu To: Ferruh Yigit Cc: dpdk stable Date: Tue, 21 Nov 2017 21:18:53 +0800 Message-Id: <1511270333-31002-191-git-send-email-yliu@fridaylinux.org> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1511270333-31002-1-git-send-email-yliu@fridaylinux.org> References: <1511270333-31002-1-git-send-email-yliu@fridaylinux.org> Subject: [dpdk-stable] patch 'net/qede: fix icc build' has been queued to stable release 17.08.1 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: , X-List-Received-Date: Tue, 21 Nov 2017 13:31:46 -0000 Hi, FYI, your patch has been queued to stable release 17.08.1 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 11/24/17. So please shout if anyone has objections. Thanks. --yliu --- >>From 598f586393503526798d17aa220ab1de31febdba Mon Sep 17 00:00:00 2001 From: Ferruh Yigit Date: Tue, 7 Nov 2017 23:38:11 +0000 Subject: [PATCH] net/qede: fix icc build [ upstream commit e8f8f595188b155a2a08009e895dd8654a93f015 ] observed icc version "icc (ICC) 18.0.0 20170811" build error: .../dpdk/drivers/net/qede/qede_ethdev.c(1475): error #279: controlling expression is constant assert(false && "Unable to start periodic timer"); ^ Warning disabled in Makefile. Fixes: 2af14ca79c0a ("net/qede: support 100G") Signed-off-by: Ferruh Yigit --- drivers/net/qede/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/net/qede/Makefile b/drivers/net/qede/Makefile index f03441d..13ae946 100644 --- a/drivers/net/qede/Makefile +++ b/drivers/net/qede/Makefile @@ -69,8 +69,9 @@ CFLAGS_BASE_DRIVER += -Wno-sometimes-uninitialized ifeq ($(shell clang -Wno-pointer-bool-conversion -Werror -E - < /dev/null > /dev/null 2>&1; echo $$?),0) CFLAGS_BASE_DRIVER += -Wno-pointer-bool-conversion endif -else -CFLAGS_BASE_DRIVER += -wd188 #188: enumerated type mixed with another type +else #ICC +CFLAGS_BASE_DRIVER += -wd188 #188: enumerated type mixed with another type +CFLAGS_qede_ethdev.o += -wd279 #279: controlling expression is constant endif # -- 2.7.4