From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bruce Richardson Subject: Re: [PATCH v3 6/6] ena: fix for icc compiler Date: Tue, 5 Jul 2016 17:19:19 +0100 Message-ID: <20160705161918.GC26504@bricha3-MOBL3> References: <1466510763-19569-6-git-send-email-jan@semihalf.com> <1467299099-32498-1-git-send-email-jan@semihalf.com> <1467299099-32498-7-git-send-email-jan@semihalf.com> <577B7539.3000007@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Jan Medala , dev@dpdk.org, Alexander Matushevsky , Jakub Palider To: Ferruh Yigit Return-path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 39C2D6889 for ; Tue, 5 Jul 2016 18:19:41 +0200 (CEST) Content-Disposition: inline In-Reply-To: <577B7539.3000007@intel.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Tue, Jul 05, 2016 at 09:52:09AM +0100, Ferruh Yigit wrote: > On 6/30/2016 4:04 PM, Jan Medala wrote: > > Signed-off-by: Alexander Matushevsky > > Signed-off-by: Jakub Palider > > Signed-off-by: Jan Medala > > The compilation error to fix is [1], it may be good to add what to fix > into commit log. > > [1] > == Build drivers/net/ena > CC ena_ethdev.o > /tmp/dpdk_maintain/ena_v3/dpdk/drivers/net/ena/ena_ethdev.c(943): error > #188: enumerated type mixed with another type > struct ena_com_create_io_ctx ctx = { 0 }; > ^ > > /tmp/dpdk_maintain/ena_v3/dpdk/drivers/net/ena/ena_ethdev.c(1036): error > #188: enumerated type mixed with another type > struct ena_com_create_io_ctx ctx = { 0 }; > ^ > ... > > > --- a/drivers/net/ena/ena_ethdev.c > > +++ b/drivers/net/ena/ena_ethdev.c > > @@ -940,7 +940,10 @@ static int ena_tx_queue_setup(struct rte_eth_dev *dev, > > __rte_unused unsigned int socket_id, > > __rte_unused const struct rte_eth_txconf *tx_conf) > > { > > - struct ena_com_create_io_ctx ctx = { 0 }; > > + struct ena_com_create_io_ctx ctx = > > + /* policy set to _HOST just to satisfy icc compiler */ > > + { ENA_ADMIN_PLACEMENT_POLICY_HOST, > > + ENA_COM_IO_QUEUE_DIRECTION_TX, 0, 0, 0, 0 }; > > Trailing "0" are not required, compiler will take care of them. > Jan, any comment on this? If you want, I can remove the trailing zeros on apply rather than needing a V3. Is that ok? Again a fixes line is missing, can you supply one. /Bruce