From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wg0-f44.google.com (mail-wg0-f44.google.com [74.125.82.44]) by dpdk.org (Postfix) with ESMTP id D9266ADF9 for ; Sun, 22 Feb 2015 02:04:31 +0100 (CET) Received: by mail-wg0-f44.google.com with SMTP id k14so19587672wgh.3 for ; Sat, 21 Feb 2015 17:04:31 -0800 (PST) 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:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=LRJgQnT+5xLNyCghXsNFbtA4Op92aw/XTYHlh6bNuDY=; b=b22HlMQQ/WrRw+bZQUEjIru6y4MlnqzlOc/ma9bQH4nT12G7qZbfWjHp3bsYPz4Uiw PIqrQpDH8PxzTFwtHj4sGY+EV0VG4F2Db7M9xZsmTwLZb95cN6GMZRFM4eHi30juM/j0 kv+A/Bs0b3ViD2/L151J4bPno4aCkUJsa+YJ9JPhVagc4xVeG+K1JsLB4rzt7QwIJNpO lBEPwpv32XxbcKPUX8Dh+o+2lst93wRha+mf6C1GWmNi03EWrSEptBAgO2bMPCwtlz3Q s4pHlGTE+KPNRC6cF4UHtnLxAGW/CbcKueBzy+fdmIk4GX9+5dKm033ab1vuzwDjicL2 wgjw== X-Gm-Message-State: ALoCoQko+zj2vOHVy0gXk4CrZUOnwZ0n5U9LsRABOEMWKCXQWdmVJlXkrv25IzfJa6vvS740iHze X-Received: by 10.194.122.196 with SMTP id lu4mr9046232wjb.154.1424567071749; Sat, 21 Feb 2015 17:04:31 -0800 (PST) Received: from xps13.localnet (117.114.118.80.rev.sfr.net. [80.118.114.117]) by mx.google.com with ESMTPSA id ga8sm9130311wib.6.2015.02.21.17.04.30 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 21 Feb 2015 17:04:30 -0800 (PST) Date: Sat, 21 Feb 2015 17:04:30 -0800 (PST) X-Google-Original-Date: Sun, 22 Feb 2015 02:04 +0100 From: Thomas Monjalon To: "Wu, Jingjing" Message-ID: <6849510.9W9abJZZZk@xps13> Organization: 6WIND User-Agent: KMail/4.14.4 (Linux/3.18.4-1-ARCH; KDE/4.14.4; x86_64; ; ) In-Reply-To: References: <1422509365-13596-1-git-send-email-jingjing.wu@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 00/15] migrate flow director in ixgbe driver to new API X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Feb 2015 01:04:32 -0000 > > The patch set uses new filter_ctrl API to replace old flow director filter APIs. > > It uses new functions and structure to replace old ones in ixgbe driver, updates > > commands to replace old ones in testpmd, and removes the old APIs > > > > Jingjing Wu (15): > > ixgbe: migrate flow director filter operations (add/delete/update) to > > new API > > ethdev: extend flow type and flexible payload type definition for flow > > director > > ixgbe: implement the flexpayload configuration of flow director filter > > app/test: remove the flexbytes_offset setting in test_link_bonding > > testpmd: remove the flexbytes_offset setting > > ethdev: remove flexbytes_offset from rte_fdir_conf > > ethdev: structures definition for flow director masks > > ixgbe: implement the mask configuration of flow director filter > > ixgbe: implement the get info and statistic operations of flow > > director > > ixgbe: implement the flush operation of flow director > > testpmd: add and update commands for flow director > > testpmd: update function to show flow director information > > testpmd: set the default value of flow director's mask > > testpmd: remove old commands for flow director > > doc: commands changed in testpmd_funcs.rst for flow director > > Acked-by: Helin Zhang Applied, thanks. Some patches were merged (example: doc update with matching code update). Now we wait for enic to be converted to the new flow director API, in order to remove the old API.