From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <thomas.monjalon@6wind.com>
Received: from mail-wm0-f54.google.com (mail-wm0-f54.google.com [74.125.82.54])
 by dpdk.org (Postfix) with ESMTP id B9CE42B98
 for <dev@dpdk.org>; Fri,  1 Apr 2016 23:01:46 +0200 (CEST)
Received: by mail-wm0-f54.google.com with SMTP id 191so4560730wmq.0
 for <dev@dpdk.org>; Fri, 01 Apr 2016 14:01:46 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=6wind-com.20150623.gappssmtp.com; s=20150623;
 h=from:to:cc:subject:date:message-id:organization:user-agent
 :in-reply-to:references:mime-version:content-transfer-encoding;
 bh=GWeoXuQKTIYHX6Dy13PTPKynlqFbqZ7Ti53gBkr3mTw=;
 b=mptzKArUYYrh1NUXslqhZDYQJ7oRdyDzbn6V2Ew93pjEZbekMgJqmQzcAI8fbnwSrz
 mh899dgdT2VXjQFVqbO/5T8Nanoh+QKWq0MVTG9u7OJGTe13n7+3tbSvUBynzc84groh
 Z0zNknEBEqdfJ0KlCC1HzZF1EhS7DWE/qoTDkSQHvU0hNd8bJvMtA+QmcdYSAn3kLfFA
 iW004kA9OUK/4BBkX7n0nVQ6vLF6244jVVTlOkgEjhBSedXvliGkt1YtL/48M7SqSd7v
 97+c3nUMzzbG2CLVawTZoJtVvrR2EY3vKzE8/avZlligqcXXbJj8pwZ/dqs0G5Hwu3Rd
 sk6g==
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;
 bh=GWeoXuQKTIYHX6Dy13PTPKynlqFbqZ7Ti53gBkr3mTw=;
 b=RcYHisB2hTyI2zzt8fgPiX2+ju84XLXuUU1o8/j7/uV94Clldl3MBPSz1bnRtiGU04
 1J1p80Lys9AZC4BHDR1tB4IIqDLdHtVqeNfiVwEWjhsZyV8DAFOUIEKAGCvMM5KMEDDK
 icV5XE2PCpPyFL/CAcFf44xEJJa1KPZ2DHQ3ONXY/9mp7SIqbvU4jvzsIP2/Ip0u8nfH
 UdyE8DE+Ie5Y52eQz5aAgsYefbqcDXoeoNW5gWL57iRqHrKKnZ1OC1GQRKCCQroZ8fOU
 s9OI6yCpu1biFxIbxQ9+B0JBuceoN0MaVUfIrCC2Yba2MibQGYjulgygDcZtBzaZSZBt
 M/sA==
X-Gm-Message-State: AD7BkJJuNOWo5BNdasAmzFyoKgAitUMMW2DD7fqBz3L3txNflx1NAgSquaZaINhndcGPG0Tm
X-Received: by 10.194.115.8 with SMTP id jk8mr7010217wjb.142.1459544506530;
 Fri, 01 Apr 2016 14:01:46 -0700 (PDT)
Received: from xps13.localnet (91.111.75.86.rev.sfr.net. [86.75.111.91])
 by smtp.gmail.com with ESMTPSA id gk4sm15681541wjd.7.2016.04.01.14.01.45
 (version=TLSv1/SSLv3 cipher=OTHER);
 Fri, 01 Apr 2016 14:01:45 -0700 (PDT)
From: Thomas Monjalon <thomas.monjalon@6wind.com>
To: Fan Zhang <roy.fan.zhang@intel.com>
Cc: dev@dpdk.org
Date: Fri, 01 Apr 2016 23:00:09 +0200
Message-ID: <1590586.sc5rf4grtj@xps13>
Organization: 6WIND
User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; )
In-Reply-To: <1459525207-24554-1-git-send-email-roy.fan.zhang@intel.com>
References: <1459525207-24554-1-git-send-email-roy.fan.zhang@intel.com>
MIME-Version: 1.0
Content-Transfer-Encoding: 7Bit
Content-Type: text/plain; charset="us-ascii"
Subject: Re: [dpdk-dev] [PATCH] app/test/test_table_acl: fill missing field
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: Fri, 01 Apr 2016 21:01:46 -0000

2016-04-01 16:40, Fan Zhang:
> This patch fills the missing field of ipv4_5tuple structure in acl table
> test.

I still don't understand why it is needed.

>  struct ipv4_5tuple {
> +	uint8_t  ttl;
>  	uint8_t  proto;
> +	uint16_t checksum;
>  	uint32_t ip_src;
>  	uint32_t ip_dst;
>  	uint16_t port_src;

Adding 2 fields to a 5-tuple makes it a 7-tuple.