From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <stephen@networkplumber.org>
Received: from mail-pd0-f169.google.com (mail-pd0-f169.google.com
 [209.85.192.169]) by dpdk.org (Postfix) with ESMTP id 755B53F9
 for <dev@dpdk.org>; Thu,  5 Jun 2014 17:29:55 +0200 (CEST)
Received: by mail-pd0-f169.google.com with SMTP id w10so1234229pde.14
 for <dev@dpdk.org>; Thu, 05 Jun 2014 08:30:08 -0700 (PDT)
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:in-reply-to
 :references:mime-version:content-type:content-transfer-encoding;
 bh=Q0ip5M9Z31COV68Ij3DvmnTPQK5fRpZGXDjqOiEZtvM=;
 b=e4SRqDICSuMze6Z8A9zR3vMmdaeM7D+UGILYdDScjbuy8eeIgKhPaVQxOHEF4oExMW
 QEv1sLwD4P4OpSJHSImPegIOIbDVpvKCJl2YU8T58/hTpGWqwhrbzjGltlSHMuVwjwhO
 0+1rmh00uUCU+PQalkY3XODfZVrbb0uaA3esEB0pDZl9sKlTNvMXuC9VFWqTOXoRngIJ
 PALSRgom+UgI4zJkgpodGtiPI9QggZ0an6Vq+B5B2tTjGxNQnJqX9x7uKR41rBQpar2u
 wAyCXkN7Fi2p823jLfOJkRkc+xWVOAqGqu+oBVV1/U2KTW55ySVG5fbTzI+aFWd4c8Dm
 yx7g==
X-Gm-Message-State: ALoCoQkko3Y2GbYWyxaN4PpNFg4l5QpfLcdfvNLUcvjV6D01NhuuOEH9NqTD4FgIV9cgGXuJGcPN
X-Received: by 10.68.189.68 with SMTP id gg4mr77806449pbc.42.1401982208020;
 Thu, 05 Jun 2014 08:30:08 -0700 (PDT)
Received: from nehalam.linuxnetplumber.net
 (static-50-53-83-51.bvtn.or.frontiernet.net. [50.53.83.51])
 by mx.google.com with ESMTPSA id br1sm24199893pbc.6.2014.06.05.08.30.07
 for <multiple recipients>
 (version=TLSv1.2 cipher=RC4-SHA bits=128/128);
 Thu, 05 Jun 2014 08:30:07 -0700 (PDT)
Date: Thu, 5 Jun 2014 08:30:05 -0700
From: Stephen Hemminger <stephen@networkplumber.org>
To: Helin Zhang <helin.zhang@intel.com>
Message-ID: <20140605083005.7b1029f8@nehalam.linuxnetplumber.net>
In-Reply-To: <1401944951-23783-6-git-send-email-helin.zhang@intel.com>
References: <1401944951-23783-1-git-send-email-helin.zhang@intel.com>
 <1401944951-23783-6-git-send-email-helin.zhang@intel.com>
X-Mailer: Claws Mail 3.9.3 (GTK+ 2.24.23; x86_64-pc-linux-gnu)
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Cc: dev@dpdk.org
Subject: Re: [dpdk-dev] [PATCH v2 05/27] mbuf: add new packet flags for i40e
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: patches and discussions about DPDK <dev.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Thu, 05 Jun 2014 15:29:55 -0000

On Thu,  5 Jun 2014 13:08:49 +0800
Helin Zhang <helin.zhang@intel.com> wrote:

> +#define PKT_RX_EIP_CKSUM_BAD 0x0000 /**< External IP header checksum error. */
> +#define PKT_RX_OVERSIZE      0x0000 /**< Num of desc of an RX pkt oversize. */
> +#define PKT_RX_HBUF_OVERFLOW 0x0000 /**< Header buffer overflow. */
> +#define PKT_RX_RECIP_ERR     0x0000 /**< Hardware processing error. */
> +#define PKT_RX_MAC_ERR       0x0000 /**< MAC error. */

Flags are useless if all zero!