From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ferruh Yigit Subject: Re: [PATCH v3 02/34] net/ice: Add basic structures Date: Wed, 12 Dec 2018 16:55:30 +0000 Message-ID: <43533466-b3cd-84ee-fcd0-c2020e19ea20@intel.com> References: <1542956179-80951-1-git-send-email-wenzhuo.lu@intel.com> <1544598004-27099-1-git-send-email-wenzhuo.lu@intel.com> <1544598004-27099-3-git-send-email-wenzhuo.lu@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Cc: Paul M Stillwell Jr To: Wenzhuo Lu , dev@dpdk.org Return-path: Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id 0888B2BF5 for ; Wed, 12 Dec 2018 17:55:32 +0100 (CET) In-Reply-To: Content-Language: en-US List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 12/12/2018 3:19 PM, Ferruh Yigit wrote: > On 12/12/2018 6:59 AM, Wenzhuo Lu wrote: >> From: Paul M Stillwell Jr >> >> Add the structures required by the NIC. >> >> Signed-off-by: Paul M Stillwell Jr > > <...> > >> @@ -0,0 +1,869 @@ >> +/* SPDX-License-Identifier: BSD-3-Clause >> + * Copyright(c) 2001-2018 >> + */ >> + >> +#ifndef _ICE_TYPE_H_ >> +#define _ICE_TYPE_H_ >> + >> +#define ETH_ALEN 6 >> + >> +#define ETH_HEADER_LEN 14 >> + >> +#define BIT(a) (1UL << (a)) >> +#define BIT_ULL(a) (1ULL << (a)) >> + >> +#define BITS_PER_BYTE 8 >> + >> +#define ICE_BYTES_PER_WORD 2 >> +#define ICE_BYTES_PER_DWORD 4 >> +#define ICE_MAX_TRAFFIC_CLASS 8 >> + >> + >> +#include "ice_status.h" >> +#include "ice_hw_autogen.h" > > Where this "ice_hw_autogen.h header file should come from? Name suggest it will > be auto-generated but my build system not able to find it. > It is in 01/34, which was blocked. It is released now, I will test again.