From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f66.google.com (mail-wm0-f66.google.com [74.125.82.66]) by dpdk.org (Postfix) with ESMTP id A852B5A31 for ; Sun, 31 Jan 2016 22:21:39 +0100 (CET) Received: by mail-wm0-f66.google.com with SMTP id l66so6254764wml.2 for ; Sun, 31 Jan 2016 13:21:39 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc:content-type; bh=MTEJU0HVmMT/e9/QFrjhq6xSUANGAyk92gFIqk8UfbQ=; b=TNs5cj3Xgg4+9JjbUjh/uwfEDinLIljxw1X6jzVX8eGKhSSKZ95FMZc4vVdUvOXimb Nwc3eLg3bFvGewm+yMwlvAsP7EqjVvGcD1VgZ+sfAiFt8sx50GPul331PHY+AuOBxfLk jqXQK1X+jc3Z5n9+q6b3xfixmepzw+NNcl7Oy31jfYxy/0Dq0PTuSUx1tFT2iAivRSLx GTrxx92Fp9FtrdepbdJa4FJaqbqxelIicyLwtbDvrTPQ4+Si/ZO8bMrKwEqaKXeLVZp/ R/S9Tqz142vfREjpHiQ6b5NI9vFkiRfltGZkyOUIrn8fTh6B4vtNfwmN6xLLUCfhzvlX HCqQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc:content-type; bh=MTEJU0HVmMT/e9/QFrjhq6xSUANGAyk92gFIqk8UfbQ=; b=TIDpTgSLzsLoV1UR8rjc+V4ISWy5XfTUKDEXCgwRr9EovbmXOlR0h/9sJYPVOlVNih JwGV8OYLhqpY+9ErwAVXql9hXUCiD8gFGgp/IEpf8mQWsTEFKjNGgjcaK+OYEbXrUtp6 yQx2twgUKMienVd1W9kMtiKBmtgOYtHd4cK4gkCoiJgQxxNju0VglDx+xhbgSJcb0hgm kAUbSCy6hO1fNexULFnFVLEbHxCnIxxm2H9oQ5ZwU8YP8w1Fyx2KroPU13UejOCCSvn3 rQQXCnJ5N++TTiww97DmR7FQsNQa3RcaK6Nn5jdyNNiH47b9UErAu7D8LKoFcMvlEV2p uxWQ== X-Gm-Message-State: AG10YORA7qjC223B1DACfPzcIc5t10FDlZeEp+8koxUzNlcLfplKuDEufoSKn5pXsbwAuBNAwxifSL5X7Su6Pg== X-Received: by 10.194.171.66 with SMTP id as2mr19138199wjc.73.1454275299503; Sun, 31 Jan 2016 13:21:39 -0800 (PST) MIME-Version: 1.0 Sender: marc.sune@gmail.com Received: by 10.27.95.202 with HTTP; Sun, 31 Jan 2016 13:21:20 -0800 (PST) In-Reply-To: <56AB639E.2080408@redhat.com> References: <1445810400-8978-1-git-send-email-marcdevel@gmail.com> <1454028127-10401-1-git-send-email-marcdevel@gmail.com> <1454028127-10401-6-git-send-email-marcdevel@gmail.com> <56AB639E.2080408@redhat.com> From: Marc Date: Sun, 31 Jan 2016 22:21:20 +0100 X-Google-Sender-Auth: 3Yh5R2d7LpZG518l6zc5P3hewoc Message-ID: To: Panu Matilainen Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH v7 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: , X-List-Received-Date: Sun, 31 Jan 2016 21:21:39 -0000 On 29 January 2016 at 14:05, Panu Matilainen wrote: > On 01/29/2016 02:42 AM, Marc Sune wrote: > >> 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 d8db24d..2c14ad7 100644 >> --- a/lib/librte_ether/rte_ether_version.map >> +++ b/lib/librte_ether/rte_ether_version.map >> @@ -117,3 +117,9 @@ DPDK_2.2 { >> >> local: *; >> }; >> + >> +DPDK_2.3 { >> + global: >> + >> + rte_eth_speed_to_bm_flag; >> +}DPDK_2.2; >> >> > The version map must be updated in the patch that adds the symbol(s) in > question to the code, not separately. Panu, I will merge it with patch 3. Marc > > > - Panu - >