From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pd0-f174.google.com (mail-pd0-f174.google.com [209.85.192.174]) by dpdk.org (Postfix) with ESMTP id CA8A9B5DE for ; Thu, 19 Feb 2015 14:29:58 +0100 (CET) Received: by pdbnh10 with SMTP id nh10so8847308pdb.11 for ; Thu, 19 Feb 2015 05:29:58 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :cc:subject:references:in-reply-to:content-type :content-transfer-encoding; bh=+QaSuPJiC8jOFsSIJIZ9QAqytBlEihwb7OmQ50YNkE4=; b=DTh4wzqxO86gekgUCyjETuTbXb2JcEDRCAWopY7IdUhmA/fp0fQgRYnSC0+xtG0JuV ptcvABzaVbUhP0QnzcgsyjdOpezYyeSQz8ObUkPhdis+bNiDUkanJBKWo7TnyFwd1Ofm I3xapoykgNal0x9/daR9scuNMf+JKbpR/IpD1TFp3eKuh8sXtYsUSxI/b31YvqfLfy18 51bup3QQrmYA6AIf/I5uUWLFLNwmx6XBJztTwJ4ce8nI90HT7GYcxlsz2MIdm3CuQ50H ytDPNMvSQc3qhvhKa+NRjxkyeVGyxWzsA1z2XaWczauxF7d9vtoEDKN7LbxB+mspiRaB wRgw== X-Gm-Message-State: ALoCoQnF8nRsSFHgh5wX3Nb6brXut1FyR/5wVumoaBmLMU4hF61SAj57otzFiZ6sGrjQBHxzl/lp X-Received: by 10.66.158.66 with SMTP id ws2mr7572680pab.37.1424352598229; Thu, 19 Feb 2015 05:29:58 -0800 (PST) Received: from [10.16.129.101] (napt.igel.co.jp. [219.106.231.132]) by mx.google.com with ESMTPSA id 9sm23884297pdg.38.2015.02.19.05.29.56 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 19 Feb 2015 05:29:57 -0800 (PST) Message-ID: <54E5E552.7040906@igel.co.jp> Date: Thu, 19 Feb 2015 22:29:54 +0900 From: Tetsuya Mukawa User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.4.0 MIME-Version: 1.0 To: Thomas Monjalon References: <1424060073-23484-12-git-send-email-mukawa@igel.co.jp> <1424314187-25177-1-git-send-email-mukawa@igel.co.jp> <1424314187-25177-9-git-send-email-mukawa@igel.co.jp> <9627211.Q3jMORBb70@xps13> In-Reply-To: <9627211.Q3jMORBb70@xps13> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH v9 08/14] ethdev: Add functions that will be used by port hotplug functions 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: Thu, 19 Feb 2015 13:29:59 -0000 On 2015/02/19 20:24, Thomas Monjalon wrote: > 2015-02-19 11:49, Tetsuya Mukawa: >> --- a/lib/librte_ether/rte_ether_version.map >> +++ b/lib/librte_ether/rte_ether_version.map >> @@ -109,6 +109,13 @@ DPDK_2.0 { >> rte_eth_tx_queue_setup; >> rte_eth_xstats_get; >> rte_eth_xstats_reset; >> + rte_eth_dev_allocated; >> + rte_eth_dev_is_detachable; >> + rte_eth_dev_get_name_by_port; >> + rte_eth_dev_get_addr_by_port; >> + rte_eth_dev_get_port_by_addr; >> + rte_eth_dev_get_changed_port; >> + rte_eth_dev_save; > In this file, alphabetical order is preferred. > Hi Thomas, Sure, I will change order. Tetsuya