From patchwork Wed Jan 4 07:21:41 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tiwei Bie X-Patchwork-Id: 18850 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id EDCE6F938; Wed, 4 Jan 2017 08:29:31 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 8BF8FF8C0 for ; Wed, 4 Jan 2017 08:28:25 +0100 (CET) Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga101.fm.intel.com with ESMTP; 03 Jan 2017 23:28:19 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,458,1477983600"; d="scan'208";a="45558635" Received: from dpdk19.sh.intel.com ([10.239.129.113]) by orsmga004.jf.intel.com with ESMTP; 03 Jan 2017 23:28:17 -0800 From: Tiwei Bie To: dev@dpdk.org Cc: adrien.mazarguil@6wind.com, wenzhuo.lu@intel.com, john.mcnamara@intel.com, olivier.matz@6wind.com, thomas.monjalon@6wind.com, konstantin.ananyev@intel.com, helin.zhang@intel.com, wei.dai@intel.com, xiao.w.wang@intel.com Date: Wed, 4 Jan 2017 15:21:41 +0800 Message-Id: <1483514502-32841-8-git-send-email-tiwei.bie@intel.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1483514502-32841-1-git-send-email-tiwei.bie@intel.com> References: <1482939691-34855-1-git-send-email-tiwei.bie@intel.com> <1483514502-32841-1-git-send-email-tiwei.bie@intel.com> Subject: [dpdk-dev] [PATCH v5 7/8] doc: update the release notes for the reserved flags 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Add information about the flags reserved for PMD-specific API in the release notes. Signed-off-by: Tiwei Bie Acked-by: Wenzhuo Lu --- doc/guides/rel_notes/release_17_02.rst | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/doc/guides/rel_notes/release_17_02.rst b/doc/guides/rel_notes/release_17_02.rst index 34dba45..af71f39 100644 --- a/doc/guides/rel_notes/release_17_02.rst +++ b/doc/guides/rel_notes/release_17_02.rst @@ -58,6 +58,18 @@ New Features MACsec offload support. The declarations of the APIs and the definitions of the flags can be found in ``rte_pmd_ixgbe.h``. +* **Reserved flags for PMD to implement the PMD-specific API.** + + Following flags in mbuf and ethdev are reserved for PMD to define its + own flags when implementing the PMD-specific API. + + * DEV_RX_OFFLOAD_RESERVED_0 + * DEV_TX_OFFLOAD_RESERVED_0 + * RTE_ETH_EVENT_RESERVED_0 + * PKT_TX_RESERVED_0 + + You can refer to ``rte_pmd_ixgbe.h`` for an example. + Resolved Issues ---------------