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 D69A11B682 for ; Fri, 13 Oct 2017 12:31:04 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id EF5B7208E8; Fri, 13 Oct 2017 06:31:02 -0400 (EDT) Received: from frontend2 ([10.202.2.161]) by compute1.internal (MEProxy); Fri, 13 Oct 2017 06:31:02 -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=WrT9bJk4NKph5zdtHeP2SYpKBK rwGeuXwU9wOY7GP2o=; b=mHl1rfA6GxAvnkGSrlK/7wic2ajADrp1OQtPEYAwoz rRg2Y9o370U+FTNpDzGzHMtLanqRp1QKa2SU3gYupnOrXK7BBAAv/7D3YAl7nK8m bdG16KkA4KR8qUZgjzuBlSihKygv00Hfx9WmwVU5Eh3iAQyodR6DvA79ToM6/gTL o= 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=WrT9bJ k4NKph5zdtHeP2SYpKBKrwGeuXwU9wOY7GP2o=; b=NtJIgz6jJXQ8odV80CHv+j ZqRPz1ON/3UYT8E+lt/xP5omZ+edcv9xtay+5DE+kJC4vonuAsYM3ogOC+WaeC7L kWOEi1wS3QL3Oq1sXWHw1sEVFeOiDfEcuamxSxqM44bOmjQX0uzA8e9lw4uHKvZi vkWp07a2gI6Kcg1DoC/BpIytv831wfYWSFrycUSkRs4TjL1KTfo/W07MMccKDg03 GvDhKtDLG4KZ5vIUn6LYh5mWrUyQMg9MZFfvW8yYJlTlJOEEt5P0jjM8vXZr4w6T X4xUn1eegXKT+tB+MS+vcLUMhzmefupC+qFr/1kLqxVMDDUbrk3a7+Oe9NqdHMmg == 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 9D0922484F; Fri, 13 Oct 2017 06:31:02 -0400 (EDT) From: Thomas Monjalon To: Adrien Mazarguil Cc: dev@dpdk.org, Ferruh Yigit , Nelio Laranjeiro Date: Fri, 13 Oct 2017 12:31:01 +0200 Message-ID: <2304345.3APzx0gxFa@xps> In-Reply-To: <1507887065-28332-1-git-send-email-adrien.mazarguil@6wind.com> References: <1507887065-28332-1-git-send-email-adrien.mazarguil@6wind.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] net/mlx4: fix missing initializers for old GCCs 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: Fri, 13 Oct 2017 10:31:05 -0000 13/10/2017 11:31, Adrien Mazarguil: > This patch works around compilation issues so far only seen on RHEL 7.2 > using GCC 4.8.5: > > [...]/mlx4_rxq.c: In function `mlx4_rx_queue_setup': > [...]/mlx4_rxq.c:473:3: error: missing initializer for field `ipackets' of > `struct mlx4_rxq_stats' [-Werror=missing-field-initializers] > > [...]/mlx4_txq.c: In function `mlx4_tx_queue_setup': > [...]/mlx4_txq.c:265:3: error: missing initializer for field `opackets' of > `struct mlx4_txq_stats' [-Werror=missing-field-initializers] > > Fixes: 79770826499b ("net/mlx4: drop live queue reconfiguration support") > > Signed-off-by: Adrien Mazarguil > Acked-by: Nelio Laranjeiro Applied, thanks