From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id B9A75B4F6 for ; Fri, 13 Feb 2015 16:40:03 +0100 (CET) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP; 13 Feb 2015 07:40:00 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.09,571,1418112000"; d="scan'208";a="651797511" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by orsmga001.jf.intel.com with ESMTP; 13 Feb 2015 07:39:58 -0800 Received: from sivswdev02.ir.intel.com (sivswdev02.ir.intel.com [10.237.217.46]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id t1DFduHv032344; Fri, 13 Feb 2015 15:39:56 GMT Received: from sivswdev02.ir.intel.com (localhost [127.0.0.1]) by sivswdev02.ir.intel.com with ESMTP id t1DFdufE009162; Fri, 13 Feb 2015 15:39:56 GMT Received: (from jmcnam2x@localhost) by sivswdev02.ir.intel.com with id t1DFdus6009158; Fri, 13 Feb 2015 15:39:56 GMT From: John McNamara To: dev@dpdk.org Date: Fri, 13 Feb 2015 15:39:49 +0000 Message-Id: <1423841989-9090-5-git-send-email-john.mcnamara@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1423841989-9090-1-git-send-email-john.mcnamara@intel.com> References: <1419266844-4848-1-git-send-email-bruce.richardson@intel.com> <1423841989-9090-1-git-send-email-john.mcnamara@intel.com> Subject: [dpdk-dev] [PATCH v2 4/4] abi: Added rxtx callback functions to ABI versioning 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: Fri, 13 Feb 2015 15:40:04 -0000 --- lib/librte_ether/rte_ether_version.map | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/lib/librte_ether/rte_ether_version.map b/lib/librte_ether/rte_ether_version.map index 7316530..3227cda 100644 --- a/lib/librte_ether/rte_ether_version.map +++ b/lib/librte_ether/rte_ether_version.map @@ -2,6 +2,8 @@ DPDK_2.0 { global: _rte_eth_dev_callback_process; + rte_eth_add_rx_callback; + rte_eth_add_tx_callback; rte_eth_allmulticast_disable; rte_eth_allmulticast_enable; rte_eth_allmulticast_get; @@ -96,6 +98,8 @@ DPDK_2.0 { rte_eth_promiscuous_disable; rte_eth_promiscuous_enable; rte_eth_promiscuous_get; + rte_eth_remove_rx_callback; + rte_eth_remove_tx_callback; rte_eth_rx_burst; rte_eth_rx_descriptor_done; rte_eth_rx_queue_count; -- 1.7.4.1