From patchwork Sun Oct 25 22:00:00 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marc Sune X-Patchwork-Id: 7997 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 1E3E28DA9; Sun, 25 Oct 2015 23:00:41 +0100 (CET) Received: from mail-wi0-f174.google.com (mail-wi0-f174.google.com [209.85.212.174]) by dpdk.org (Postfix) with ESMTP id B8A598D9A for ; Sun, 25 Oct 2015 23:00:36 +0100 (CET) Received: by wikq8 with SMTP id q8so140265522wik.1 for ; Sun, 25 Oct 2015 15:00:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=wx2FdJNfwt1kFZ3eifMIf3vfRYZP3chLdTdw7KEJatw=; b=GQKuAVjKKimyeIfDoN2LoWinP/1XmSwO9PcWVz6/CiExoqzmCPCpMgvsFR9D6BzVSq t6XX/YSFXiT3wd+EgK++shTHcga/tL8FZAKXcp0tpSry2m2cfa8BGMDtqL3iBLwv/tUb ZjkOuVNaHOMG0sgCQrlcf0Th4DBydikZnoOh8mPeLedhTaGQ0sZmWYCxcUQjFuj9dZ8I xn1ytbgiSZ40db4/h/44RlP5g17LO7Ut4t29emEB2SxBvvYSf1Lj1EfMuVmOqoqBsFu4 QQQ9ZBw6Y41QaLdT41X8/IcaD8NlFrqOIogE1CpHF4uzsnTsa5dXVhS9Ge/KURbYJzSj wApQ== X-Received: by 10.28.55.144 with SMTP id e138mr1618827wma.69.1445810436644; Sun, 25 Oct 2015 15:00:36 -0700 (PDT) Received: from localhost.localdomain (189.Red-83-47-134.dynamicIP.rima-tde.net. [83.47.134.189]) by smtp.gmail.com with ESMTPSA id ev1sm8733669wic.21.2015.10.25.15.00.35 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sun, 25 Oct 2015 15:00:36 -0700 (PDT) From: Marc Sune To: dev@dpdk.org Date: Sun, 25 Oct 2015 23:00:00 +0100 Message-Id: <1445810400-8978-6-git-send-email-marcdevel@gmail.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1445810400-8978-1-git-send-email-marcdevel@gmail.com> References: <1443993003-1059-1-git-send-email-marcdevel@gmail.com> <1445810400-8978-1-git-send-email-marcdevel@gmail.com> Subject: [dpdk-dev] [PATCH v6 5/5] ethdev: add rte_eth_speed_to_bm_flag() to ver. map 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Added rte_eth_speed_to_bm_flag() to DPDK2.2 version map. Signed-off-by: Marc Sune --- lib/librte_ether/rte_ether_version.map | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/librte_ether/rte_ether_version.map b/lib/librte_ether/rte_ether_version.map index 8345a6c..cbfe0c8 100644 --- a/lib/librte_ether/rte_ether_version.map +++ b/lib/librte_ether/rte_ether_version.map @@ -127,3 +127,9 @@ DPDK_2.1 { rte_eth_timesync_read_tx_timestamp; } DPDK_2.0; + +DPDK_2.2 { + global: + + rte_eth_speed_to_bm_flag; +} DPDK_2.1;