From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f50.google.com (mail-wm0-f50.google.com [74.125.82.50]) by dpdk.org (Postfix) with ESMTP id 1C62A10E0B for ; Fri, 23 Dec 2016 10:30:21 +0100 (CET) Received: by mail-wm0-f50.google.com with SMTP id m1so2642574wme.0 for ; Fri, 23 Dec 2016 01:30:21 -0800 (PST) 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:user-agent:in-reply-to :references:mime-version:content-transfer-encoding; bh=oVWYfMI1ZwxBUo837Q4WHX7/ARWF79wyxOZH8kVWnlI=; b=zSCKjMMwWETqd9GhAQg5CuwCly6PQf0mEAdRgTJGwroLdojx+1WqjIMSZy+R4q8VAG C7gJd/qxo8tgl+9uAZtfnP49+ZKqLxYk2+SIiWYSmFQ6RxAEwtkCkQJGCPt32WsMnqDZ pLhGA903IWXJjzDQm0y17+z1qj4NrFuybiVppkkgVdJvqVAH2Z5x16qXBjSTy6QXxCPS 6sUb0klHHp0AX8Qkr91p8arx3nIvLZ2vC2Xc2icuTQXjJGET30xahZa/I0gA/BAvwqL9 QH64et/vHxJmRq1AkjSCetVKZtdDudcAc+02COXL6VTLusdgm9BBbzA5vEEE6CL9+YpF PKsg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=oVWYfMI1ZwxBUo837Q4WHX7/ARWF79wyxOZH8kVWnlI=; b=AA1UT8ubnajc2dXN/0ldVMlJp+uGKuTIlYstVDm+vZA0nbFlHigePg+J0LeDpyva98 +GPSHA7B60dMJzloJyUEpz1I5hwbaleMCgsDkoMTI5pyNj5auT7D3aNfAZBAQPLmejwL OnsEaPmeyoeEZ048OvvT/U+zkq8O5X20UyWHyxXhXRqp/2MxocXQBSevI/3sI9S7SneB mLYYhbahbx5pH1DkT78uSQrZxm9Zv/G5MUgQT/7gR6hhUf34maMcKtgx/nmm1pXJM9VM 1Xnn4ZnSLc1KU/4pwnjeG2Uc76IzVmpYaH0S1npgRVYVaTtrtS7qqsPlx2Q29KSriO+3 JHLA== X-Gm-Message-State: AIkVDXLRv4uwYGbuZfHq2e/RGTvW/fBXKlvYHLuGMA6mr2o/JvYAgmulJNeVjt5jEHjNocRV X-Received: by 10.28.143.20 with SMTP id r20mr14489034wmd.2.1482485420846; Fri, 23 Dec 2016 01:30:20 -0800 (PST) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id i132sm36041612wmf.14.2016.12.23.01.30.19 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 23 Dec 2016 01:30:20 -0800 (PST) From: Thomas Monjalon To: Adrien Mazarguil Cc: dev@dpdk.org Date: Fri, 23 Dec 2016 10:30:19 +0100 Message-ID: <2622625.VFienLCi8z@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v5 00/26] Generic flow API (rte_flow) X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Dec 2016 09:30:22 -0000 > Adrien Mazarguil (26): > ethdev: introduce generic flow API > doc: add rte_flow prog guide > doc: announce deprecation of legacy filter types > cmdline: add support for dynamic tokens > cmdline: add alignment constraint > app/testpmd: implement basic support for rte_flow > app/testpmd: add flow command > app/testpmd: add rte_flow integer support > app/testpmd: add flow list command > app/testpmd: add flow flush command > app/testpmd: add flow destroy command > app/testpmd: add flow validate/create commands > app/testpmd: add flow query command > app/testpmd: add rte_flow item spec handler > app/testpmd: add rte_flow item spec prefix length > app/testpmd: add rte_flow bit-field support > app/testpmd: add item any to flow command > app/testpmd: add various items to flow command > app/testpmd: add item raw to flow command > app/testpmd: add items eth/vlan to flow command > app/testpmd: add items ipv4/ipv6 to flow command > app/testpmd: add L4 items to flow command > app/testpmd: add various actions to flow command > app/testpmd: add queue actions to flow command > doc: describe testpmd flow command > app/testpmd: add protocol fields to flow command Applied, thanks for the great work!