From patchwork Wed Dec 28 15:41:26 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tiwei Bie X-Patchwork-Id: 18617 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 7728C532E; Wed, 28 Dec 2016 16:48:14 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id D7E6937A6 for ; Wed, 28 Dec 2016 16:47:27 +0100 (CET) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga101.jf.intel.com with ESMTP; 28 Dec 2016 07:47:27 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos; i="5.33,422,1477983600"; d="scan'208"; a="1105274762" Received: from dpdk19.sh.intel.com ([10.239.129.113]) by fmsmga002.fm.intel.com with ESMTP; 28 Dec 2016 07:47:24 -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, 28 Dec 2016 23:41:26 +0800 Message-Id: <1482939691-34855-3-git-send-email-tiwei.bie@intel.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1482939691-34855-1-git-send-email-tiwei.bie@intel.com> References: <1482677880-117158-1-git-send-email-tiwei.bie@intel.com> <1482939691-34855-1-git-send-email-tiwei.bie@intel.com> Subject: [dpdk-dev] [PATCH v4 2/7] ethdev: reserve an event type for PMD-specific API 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" Reserve an event type, that can be used by PMD to define its own event type when implementing the PMD-specific API. Suggested-by: Adrien Mazarguil Signed-off-by: Tiwei Bie --- lib/librte_ether/rte_ethdev.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/librte_ether/rte_ethdev.h b/lib/librte_ether/rte_ethdev.h index fb51754..d465825 100644 --- a/lib/librte_ether/rte_ethdev.h +++ b/lib/librte_ether/rte_ethdev.h @@ -3044,6 +3044,8 @@ enum rte_eth_event_type { RTE_ETH_EVENT_INTR_RESET, /**< reset interrupt event, sent to VF on PF reset */ RTE_ETH_EVENT_VF_MBOX, /**< message from the VF received by PF */ + RTE_ETH_EVENT_RESERVED_0, + /**< reserved event type for PMD-specific API */ RTE_ETH_EVENT_MAX /**< max value of this enum */ };