From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) by dpdk.org (Postfix) with ESMTP id 9A4782583 for ; Sun, 22 Apr 2018 17:10:18 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id ABCE520F6C; Sun, 22 Apr 2018 11:10:17 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Sun, 22 Apr 2018 11:10:17 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fridaylinux.org; h=cc:date:from:in-reply-to:message-id:references:subject:to :x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=lMs6QqmgB2pOE9j++ OajjAjUbwc5gsrQZ6fxV2eagn4=; b=uWc4aR8kHBHKuInWjQA0DWJnn1WvjRHN2 TwO4HuvUGuRdUikNTa6PiSYZ3x3EEA0EbnEfTpC7PXi2zoO7igSTRBqEosMm7Umi RPLs6YD3F8lj/tXEPXvLctrOnI4XQDAoynjvJcrVtnX4YrVOt/orHxgrFUkn/sit M87qm4q8tkcpDhDaSmJqMAuB955WfEZsksOj9p8s0WVLR4zfD/iXItLb690WYw+l QRUtwPyNHzw3MW81PIo7UUZKRVhPco8lfsz2RlQV4yJlQWsg4m2DWFA1wbm+6172 5JklwBLa/2FuQll+ZcSON2gJooTyHfVtdPl1yOY62cPV96OZ4EqPA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:date:from:in-reply-to:message-id :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc; s= fm2; bh=lMs6QqmgB2pOE9j++OajjAjUbwc5gsrQZ6fxV2eagn4=; b=dc0C0clT hBHDv0XZpWFcUlv7U/cKUt1HiLNMMQHVkp36mZgxeY+QljWzkLWidadctqFHOvL9 qnZgtXprpxFBbERvmfxewNU69Bnd38QrI1FnVB6nDsOTM70uHMBsBjeJtIaD0Qdu Zy9KmXwZQLQqa2XEx0XYacIbTPxS6imK5Ap17/bbWBmATPx1v3Io0iPPvi/qYpo9 mSkl3XaRpqivaCf9lNCUtKDRLYcF7llQLemykFfj6nsCDa2fdodjRRxrZHV+liTT iNjshOBChpJfkZl2CEzAopk7L25E1qHEEfu2mMxm0uCVx0pRW63wyKg1Ur4v9kuY ent7kgE5Ci1n9g== X-ME-Sender: Received: from yuanhanliu-NB0.tencent.com (unknown [223.74.148.66]) by mail.messagingengine.com (Postfix) with ESMTPA id E3B9B10255; Sun, 22 Apr 2018 11:10:15 -0400 (EDT) From: Yuanhan Liu To: Ferruh Yigit Cc: Gaetan Rivet , dpdk stable Date: Sun, 22 Apr 2018 23:08:52 +0800 Message-Id: <20180422150949.17523-2-yliu@fridaylinux.org> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20180422150949.17523-1-yliu@fridaylinux.org> References: <20180422150949.17523-1-yliu@fridaylinux.org> Subject: [dpdk-stable] patch 'pci: remove duplicated symbol from map file' has been queued to LTS release 17.11.2 X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Apr 2018 15:10:18 -0000 Hi, FYI, your patch has been queued to LTS release 17.11.2 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 04/29/18. So please shout if anyone has objections. Thanks. --yliu --- >>From 9393d8d613602e8e9b266ffc95d4ecb51691e776 Mon Sep 17 00:00:00 2001 From: Ferruh Yigit Date: Thu, 15 Mar 2018 16:48:54 +0000 Subject: [PATCH] pci: remove duplicated symbol from map file [ upstream commit 8f0b534b35a6748563e953ef40112bbb750f354c ] Remove duplicated symbol rte_pci_device_name from .map file. Also sort the map file to be able to detect any possible duplication easier in the future. Fixes: 0e3ef055bee5 ("pci: fix namespace prefix of new functions") Signed-off-by: Ferruh Yigit Acked-by: Gaetan Rivet --- lib/librte_pci/rte_pci_version.map | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/librte_pci/rte_pci_version.map b/lib/librte_pci/rte_pci_version.map index 15d93d95c..c0280277b 100644 --- a/lib/librte_pci/rte_pci_version.map +++ b/lib/librte_pci/rte_pci_version.map @@ -3,12 +3,11 @@ DPDK_17.11 { eal_parse_pci_BDF; eal_parse_pci_DomBDF; - rte_pci_addr_cmp; - rte_pci_addr_parse; - rte_pci_device_name; pci_map_resource; pci_unmap_resource; rte_eal_compare_pci_addr; + rte_pci_addr_cmp; + rte_pci_addr_parse; rte_pci_device_name; local: *; -- 2.11.0