From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id A491323C for ; Mon, 23 Apr 2018 08:35:58 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 22 Apr 2018 23:35:57 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.49,316,1520924400"; d="scan'208";a="33893205" Received: from dpdk51.sh.intel.com ([10.67.110.184]) by fmsmga007.fm.intel.com with ESMTP; 22 Apr 2018 23:35:55 -0700 From: Qi Zhang To: adrien.mazarguil@6wind.com Cc: dev@dpdk.org, declan.doherty@intel.com, sugesh.chandran@intel.com, michael.j.glynn@intel.com, yu.y.liu@intel.com, konstantin.ananyev@intel.com, bruce.richardson@intel.com, Qi Zhang Date: Mon, 23 Apr 2018 14:36:07 +0800 Message-Id: <20180423063610.246387-1-qi.z.zhang@intel.com> X-Mailer: git-send-email 2.13.6 In-Reply-To: <1522279780-34842-1-git-send-email-qi.z.zhang@intel.com> References: <1522279780-34842-1-git-send-email-qi.z.zhang@intel.com> Subject: [dpdk-dev] [PATCH v4 0/3] rte_flow extension for vSwitch acceleration 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: Mon, 23 Apr 2018 06:36:00 -0000 From: Qi Zhang v4: - Change to OpenFlow complied TTL actions - Change to OpenFlow complied VLAN/MPLS actions. - typos fix. - Remove generic field_set action since, couple opens not closed (should we move to dedicate filed modification actions?) v3: - remove patch for port action and enhanced statistic query. - reworked IPv6 ND related pattern base on Adrien's suggestion. - remove generic increament/decrement/copy action - rework packet modification action(RTE_FLOW_ACTION_TYPE_FIELD_SET). - Add OpenFlow friendly TTL change actions. - Add OpenFlow friendly VLAN/MPLS push/pop actions v2: - fix couple typoes in code, doc and commit log This patch extend rte_flow API. The purpose is to provide necessary programming interface for virtual switch software (such as OVS) to take advantage of incoming device's vSwitch acceleration capability when using DPDK as data plane. Note: - The driver to demonstrate the new APIs is still in development, but we hope it could be accepted early to make OVS integration smoothly. Qi Zhang (3): ethdev: add more protocol support in flow API ethdev: add TTL change actions in flow API ethdev: add VLAN and MPLS actions in flow API app/test-pmd/cmdline_flow.c | 444 ++++++++++++++++++++++++++++ app/test-pmd/config.c | 9 + doc/guides/prog_guide/rte_flow.rst | 291 ++++++++++++++++++ doc/guides/testpmd_app_ug/testpmd_funcs.rst | 72 +++++ lib/librte_ether/rte_flow.h | 432 ++++++++++++++++++++++++++- 5 files changed, 1247 insertions(+), 1 deletion(-) -- 2.13.6