From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <thomas.monjalon@6wind.com>
Received: from mail-wg0-f41.google.com (mail-wg0-f41.google.com [74.125.82.41])
 by dpdk.org (Postfix) with ESMTP id 710C57E99
 for <dev@dpdk.org>; Thu, 23 Oct 2014 18:01:53 +0200 (CEST)
Received: by mail-wg0-f41.google.com with SMTP id b13so1504411wgh.24
 for <dev@dpdk.org>; Thu, 23 Oct 2014 09:10:18 -0700 (PDT)
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20130820;
 h=x-gm-message-state:from:to:cc:subject:date:message-id:organization
 :user-agent:in-reply-to:references:mime-version
 :content-transfer-encoding:content-type;
 bh=Ik9XqAS2hEab1gisNwNA/gVkI1Sc6cjN3L3UMs9Y9HQ=;
 b=CN6nVNpSaS8R5nyoLjvDZHjl5cwxQ+QFVyO4VnLJ0WZXw3nehBVrL61OPCUnoZYFPh
 PeA2iBGKMln0mSjwRsGsiXBM8oMMOopO3nE6bhm327dQRAdLz5GUEhvxx5IwG/Lbctb8
 caxqwLSaBCpmC6bR8QMlNiOD18sWreRR492lolaJGTKbi+bthqMzJpU+M7qUn8CcKWP2
 sml9KXubP2obERVC/fCBycZttR1ttzsS6e42XTXg0CrN3wsriUKkFjJ2i2uKHwhFA1g8
 9Bie8pB/ld70yX9n7xuW76VaQLT1D4Cb/evaZc+lXJZPZxGuBqAR8Gzmhk1RZ9o/u2q5
 M/tA==
X-Gm-Message-State: ALoCoQmGBz1JBZdaXBVD+Ozq8hqasZ0WHHAlAShNdm3wOTFk5CM/hiHznJ0FoYLi42qwATy4LTdG
X-Received: by 10.180.91.11 with SMTP id ca11mr41362134wib.45.1414080618852;
 Thu, 23 Oct 2014 09:10:18 -0700 (PDT)
Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136])
 by mx.google.com with ESMTPSA id ua8sm2652757wjc.7.2014.10.23.09.10.17
 for <multiple recipients>
 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128);
 Thu, 23 Oct 2014 09:10:18 -0700 (PDT)
From: Thomas Monjalon <thomas.monjalon@6wind.com>
To: Jijiang Liu <jijiang.liu@intel.com>
Date: Thu, 23 Oct 2014 18:10:01 +0200
Message-ID: <1839033.fMiRDbGvNu@xps13>
Organization: 6WIND
User-Agent: KMail/4.14.2 (Linux/3.16.4-1-ARCH; KDE/4.14.2; x86_64; ; )
In-Reply-To: <1414070340-19128-6-git-send-email-jijiang.liu@intel.com>
References: <1414070340-19128-1-git-send-email-jijiang.liu@intel.com>
 <1414070340-19128-6-git-send-email-jijiang.liu@intel.com>
MIME-Version: 1.0
Content-Transfer-Encoding: 7Bit
Content-Type: text/plain; charset="us-ascii"
Cc: dev@dpdk.org
Subject: Re: [dpdk-dev] [PATCH v7 05/10] app/test-pmd:test VxLAN packet
	identification
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, 23 Oct 2014 16:01:53 -0000

2014-10-23 21:18, Jijiang Liu:
> Add two commands to test VxLAN packet identification.
> The test steps are as follows:
>  1> use commands to add/delete VxLAN UDP port.
>  2> use rxonly mode to receive VxLAN packet.
> 
> Signed-off-by: Jijiang Liu <jijiang.liu@intel.com>
[...]
>  static const char *pkt_rx_flag_names[MAX_PKT_RX_FLAGS] = {
>  	"VLAN_PKT",
>  	"RSS_HASH",
> @@ -84,6 +86,9 @@ static const char *pkt_rx_flag_names[MAX_PKT_RX_FLAGS] = {
>  
>  	"IEEE1588_PTP",
>  	"IEEE1588_TMST",
> +
> +	"PKT_RX_TUNNEL_IPV4_HDR"
> +	"PKT_RX_TUNNEL_IPV6_HDR"
>  };

Commas are missing here.

-- 
Thomas