From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f54.google.com (mail-wm0-f54.google.com [74.125.82.54]) by dpdk.org (Postfix) with ESMTP id 4BC28C414 for ; Thu, 16 Jun 2016 09:58:26 +0200 (CEST) Received: by mail-wm0-f54.google.com with SMTP id m124so56735203wme.1 for ; Thu, 16 Jun 2016 00:58:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=date:from:to:cc:subject:message-id:mail-followup-to:references :mime-version:content-disposition:in-reply-to; bh=2y/TMlIkyU+wkONYjx4VQ7APpEdm2cNWAHUM7HCggcE=; b=Yyr/EbI+2AeVfgzJPybXGAlNljQ60OHAQfQazPcR9UCAp8M9+n3Dy4oPsWLRYif30k 2OEd+zWFhJyKAhqikJinuv3Uq9EOvsCoKyyELdwjtpdwqXWG+Ki7c6YqZmU+W8h4wZY/ PP+FusjR8z3BzgKH6Mge58ycV2z2Z3p+44Lc+CrgfT8XpO4rHYP34GdNErl6bpPk1Ofb IwEWyf3XG6UASjJpWlniFhSPqmmDPDC/dRHaO+9KMHR4kB2idG69rsNV7yN++1mJ8xaA L8p9ctXbZ4ID6bt3XDBYhAEa0yskbOys4Nk0s3Jud3gPSS1E02WCjM9C4bgFnJrfL8rk fL1g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:date:from:to:cc:subject:message-id :mail-followup-to:references:mime-version:content-disposition :in-reply-to; bh=2y/TMlIkyU+wkONYjx4VQ7APpEdm2cNWAHUM7HCggcE=; b=RAgExzL5fnS/4JU82Vb1oFh5bgrde31nbwSOq8Z7d/5KsOApj1kdKEzAJwJi6rrv1Q Jm9ynOEL5pdMMvOHZEDcJa4o01hbxhk/KDAC3wo2nAlxNgPEa0jMCW9bIN1VfW31JOZ0 dIBDZRx/NfTP2VrZFBYFsQ7Q9Y6/+NNR2rGCCK9r2rY2LkZEkFY9kCTbEzbuDw0I9kh/ TC4xUlLTY/sCWpVIb8IzB6lrtkrHi/luN6QGY7Ngr5RtRNDrlbHFovJUf2sh/X4RsG2c a9zRxwIEeOzBLkyBi6psqetJ5q1K6V0OZoTRlFCW8YgAmphR+wo032INUFbFDLQaU6qO PI8A== X-Gm-Message-State: ALyK8tIcNDtdwiF4DxKS8cPq1R+fHhu4g8HmYqD8oiXypIFgNtrJxc3OLipzlMp0onTWdvXv X-Received: by 10.28.98.137 with SMTP id w131mr13077353wmb.65.1466063906085; Thu, 16 Jun 2016 00:58:26 -0700 (PDT) Received: from 6wind.com (guy78-3-82-239-227-177.fbx.proxad.net. [82.239.227.177]) by smtp.gmail.com with ESMTPSA id f196sm1981271wmg.15.2016.06.16.00.58.24 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 16 Jun 2016 00:58:25 -0700 (PDT) Date: Thu, 16 Jun 2016 09:58:23 +0200 From: Adrien Mazarguil To: Ferruh Yigit Cc: dev@dpdk.org Message-ID: <20160616075823.GI7621@6wind.com> Mail-Followup-To: Ferruh Yigit , dev@dpdk.org References: <1465917730-10713-1-git-send-email-ferruh.yigit@intel.com> <1465921044-25700-1-git-send-email-ferruh.yigit@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1465921044-25700-1-git-send-email-ferruh.yigit@intel.com> Subject: Re: [dpdk-dev] [PATCH v3] mlx: fix icc compilation error 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, 16 Jun 2016 07:58:26 -0000 On Tue, Jun 14, 2016 at 05:17:24PM +0100, Ferruh Yigit wrote: > Compilation errors: > mlx4: > CC mlx4.o > .../dpdk/drivers/net/mlx4/mlx4.c(5409): error #188: enumerated type > mixed with another type > priv->intr_handle.type = 0; > ^ > > mlx5: > CC em_rxtx.o > .../dpdk/drivers/net/mlx5/mlx5_rxq.c(282): > error #188: enumerated type mixed with another type > enum hash_rxq_type type = 0; > ^ > > .../dpdk/drivers/net/mlx5/mlx5_rxq.c(622): > error #188: enumerated type mixed with another type > if (!priv_allow_flow_type(priv, i)) { > ^ > more same type of error > > Fixes: c4da6caa426d ("mlx4: handle link status interrupts") > Fixes: 198a3c339a8f ("mlx5: handle link status interrupts") > Fixes: 0d2186743d62 ("mlx5: manage all special flow types at once") > Fixes: 612ad38209f7 ("mlx5: fix hash Rx queue type in RSS mode") > Fixes: 083c2dd31776 ("mlx5: refactor special flows handling") > > Signed-off-by: Ferruh Yigit Acked-by: Adrien Mazarguil -- Adrien Mazarguil 6WIND