From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) by dpdk.org (Postfix) with ESMTP id 98FC61D1F0; Sun, 13 May 2018 22:44:09 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 3C2F425BF4; Sun, 13 May 2018 16:44:09 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Sun, 13 May 2018 16:44:09 -0400 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=ZldIqKyHR565+RF92z3D/xlQGq 7TeicSQzu8wUq3j08=; b=Yd39LlN6wtcF2eEU8MOB0s+Mw0TFiIwTDiGGdZ3PgJ Q8L5ZVqR7IwM94xpjIKqjhNnbDh0LmtKEgxdoaMdexkiJY6c6LERrcMx6ZPDFZF8 6TWdGwysO/FtOIGN76ecf3bPwRDr8I7PM5Pzf0pwTj1Wf/xLxsVP+i92TMZ2XDuF 0= 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=fm2; bh=ZldIqK yHR565+RF92z3D/xlQGq7TeicSQzu8wUq3j08=; b=QFT6jvAQmmSuOm5uJecWgI L0ALbvpL65PiVt8ng152OsbhzY0ZhbpqZjCJNNksK+fnQSF4LBYg7y9+F5CEW1eK 1iIXIzlMFSmhcAdRj/bjsusRfd76Jw2ITXYAtcXYGIYoD8JMRhW34mW4+G5yIB+B zj6mrYVnqIVzck5zm+n/k39zIDtwBbHXn25M8OfTs/r4NFHPvXKFacH7ltYOhc6r hYHmPlfqKRH9lbogKqlZLgYKbBzuDtXJKwEHi6mRekmC2SHhVPNvrT2vwQDQfw4C PMtCOuHT8g8kRnLdVJhpHzYF2eDdTd4klv/x/PoM+YwT9iLL1qg7MX347vGY76rg == X-ME-Sender: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id A0C88E4393; Sun, 13 May 2018 16:44:08 -0400 (EDT) From: Thomas Monjalon To: Andy Green Cc: dev@dpdk.org, stable@dpdk.org Date: Sun, 13 May 2018 22:44:07 +0200 Message-ID: <5360593.7KZXhYMdno@xps> In-Reply-To: <152609043291.121661.10977996123332031645.stgit@localhost.localdomain> References: <152609021699.121661.5295227351721865436.stgit@localhost.localdomain> <152609043291.121661.10977996123332031645.stgit@localhost.localdomain> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v3 22/24] rte_hash_crc.h: stack vars declared at top of function X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 May 2018 20:44:09 -0000 12/05/2018 04:00, Andy Green: > /projects/lagopus/src/dpdk/build/include/rte_hash_crc.h: > In function 'crc32c_2words': > /projects/lagopus/src/dpdk/build/include/rte_hash_crc.h:347:2: > warning: ISO C90 forbids mixed declarations and code > [-Wdeclaration-after-statement] > uint32_t crc, term1, term2; Fixes: d983cf41698f ("hash: add software CRC32 implementation") Cc: stable@dpdk.org > Signed-off-by: Andy Green Applied, thanks