From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f52.google.com (mail-wm0-f52.google.com [74.125.82.52]) by dpdk.org (Postfix) with ESMTP id 33B568DAC for ; Thu, 31 Mar 2016 17:04:31 +0200 (CEST) Received: by mail-wm0-f52.google.com with SMTP id 127so137604875wmu.1 for ; Thu, 31 Mar 2016 08:04:31 -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=6ZwnE8feHP668kmXtpDV1DVLoF1xPxTe8ZKVZyH3aBM=; b=0v3w/iqF9R2layrAUeXaCvYKHn2TgMPA+96I91fqOp7Rfj0l1q2HL8/AYZVgOvSkeK XnMweunyLOjV6HFB+KsYkKaYmPp/7USkzkqsp/lpncSLjHuk9imzV7annlF3OSmRU6Dr H0eMq2NaLt/JzuX7zyurGbRP9Zrb/H1iV9yCUfFj/yHSiy0QjHILlbU5ZO/bkEtwnycD HopyRFS4QhD+IP2uCVihkCp2kDJB3NwTTgDbhZmUcQ61TH0olrdssGAbH7nRuoQXz0+5 8QSGAwHkX6rPTj5ke9YatlcxeBoR3yIUsjLlV6y9XXnEnl4+CU/Bi/KIfijp4Rem5aTz aXvg== 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=6ZwnE8feHP668kmXtpDV1DVLoF1xPxTe8ZKVZyH3aBM=; b=C/kFNIuWvcgOZJPk7u9Agb5DSLGmvGRHcJWQHQ1o27NbwY7ZDpWKuF5w+rwJ3l9Cmc Ol67HY+TyRS7oqdSSb0Im3cHf04ZVZntclU+xNGwjoANyWewmWpyKfwLwIEDeWvO/FcD TE9hW86vLNmXC4urMYr4DOb8HP5cA1fqOf14b6/NhsPNydy9ePd2XIH0f7bBNUkWnvq2 jl0eoz0mTScuIxDuLP/JwVYFe23YE2whTR7bqPna29mx8VHXHbXbXIUXmUpvJKca2wGH CFXsJn6PXM4JYNDgt0hpCvsu26hNFu4JjeYAQDfbRHL3R8PneaI0aTSD6GhQm+2FY7lb ATVw== X-Gm-Message-State: AD7BkJLStr+wR9zhCHkgsMrtHPRLyFOmJmU56bXl8m+urTAHj2UBvAVGUj1mHpsEeFKLg3SD X-Received: by 10.28.107.9 with SMTP id g9mr11690729wmc.34.1459436671017; Thu, 31 Mar 2016 08:04:31 -0700 (PDT) Received: from xps13.localnet (91.111.75.86.rev.sfr.net. [86.75.111.91]) by smtp.gmail.com with ESMTPSA id ei9sm9467599wjd.40.2016.03.31.08.04.29 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 31 Mar 2016 08:04:30 -0700 (PDT) From: Thomas Monjalon To: Aaron Conole Cc: dev@dpdk.org, Bruce Richardson , Helin Zhang , Wenzhuo Lu , Panu Matilainen , Remy Horton Date: Thu, 31 Mar 2016 17:02:37 +0200 Message-ID: <1869769.p3mu05iuW3@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1458682638-28378-1-git-send-email-aconole@redhat.com> References: <1458682638-28378-1-git-send-email-aconole@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v2 0/7] Various fixes to compile with gcc6 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Mar 2016 15:04:31 -0000 2016-03-22 17:37, Aaron Conole: > This series brings a number of code cleanups to allow building using gcc6, > with various legitimate warnings being fixed. > > Some of these fixes are to the drivers area, making this series a bit > atypical. However, the fixes identified in patches 2 and 3 are actual > bugs and should be fixed. > > The first patch from the original series has been dropped. It is no > longer needed, after commit 5ecdeba601d1 ("lpm: merge tbl24 and tbl8 > structures"). > > > Aaron Conole (7): > app/test/test: Fix missing brackets > drivers/net/e1000: Fix missing brackets > drivers/net/e1000: Fix missing lsc interrupt check brackets > drivers/net/ixgbe: Fix vlan filter missing brackets > drivers/net/e1000/igb: Signed left shift operator > drivers/net/ixgbe: Signed left shift operator > drivers/net/ixgbe: Fix uninitialized warning Applied with v3 of patch 2, thanks