From patchwork Mon Jan 20 11:05:39 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Monjalon X-Patchwork-Id: 64908 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 7EE2AA0528; Mon, 20 Jan 2020 12:05:49 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 272DD316B; Mon, 20 Jan 2020 12:05:49 +0100 (CET) Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) by dpdk.org (Postfix) with ESMTP id B21CF2F4F for ; Mon, 20 Jan 2020 12:05:47 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id F084A21E29; Mon, 20 Jan 2020 06:05:46 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Mon, 20 Jan 2020 06:05:46 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; s=mesmtp; bh=APuFpwutFdWjuRNK5yTt/AW 7lYeBNQZ6An/Sdr4WtFw=; b=ZvqrYd0EMenlLg1PAGa7LgoNldt6wRypuuJ29fy H91Wcn8j+mMpFKiYBnQvrYU02I0pmCK7/PGtm39FronWzTpyVx4E/+bsgn7p+zlN oo7fc9FS48+bB5GlBHnb00ouIEDhDLzxlPNAa/WjJR7knfSMnfX6Zovq5gEWI40f s/y4= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:date:from :message-id:mime-version:subject:to:x-me-proxy:x-me-proxy :x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=APuFpwutFdWjuRNK5 yTt/AW7lYeBNQZ6An/Sdr4WtFw=; b=iBfkDZhKmS/Kczfg8OsyaKFmwuKs3vg9d KcbMN4xv2fBi2Zlh/y6BiIWFRYlUV08udP2WY3E5hqdOHHzQmoDpH5F7s79Cjp++ Mj2OFv4VtyiJua+Ge9Hf5AtiJ85Q/pCWCcS0ZgOlEU4dBr6BWL+PVWzEZtAftOcR OB2GCRfwqrVtqfjp1m3Hh+mrXkNqBWM7CdhocbGwyJU1drcnraW+DcuZEHuI5sk0 anRz51MUXKErKn1LW4W0I1nfHcKJ5znfWdNfWfRJX+vu3F/Tq/zq9JXopsNGsWme Ya6JF78K68/8YG8hV1ad8Y5y8/+zaJ76PUlfy3HvtIPDKg7nbJhpA== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedugedrudehgdduiecutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmdenuc fjughrpefhvffufffkofgggfestdekredtredttdenucfhrhhomhepvfhhohhmrghsucfo ohhnjhgrlhhonhcuoehthhhomhgrshesmhhonhhjrghlohhnrdhnvghtqeenucfkphepje ejrddufeegrddvtdefrddukeegnecurfgrrhgrmhepmhgrihhlfhhrohhmpehthhhomhgr shesmhhonhhjrghlohhnrdhnvghtnecuvehluhhsthgvrhfuihiivgeptd X-ME-Proxy: Received: from xps.monjalon.net (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 2FD2780059; Mon, 20 Jan 2020 06:05:45 -0500 (EST) From: Thomas Monjalon To: dev@dpdk.org Cc: Ferruh Yigit , Mahipal Challa , Gavin Hu Date: Mon, 20 Jan 2020 12:05:39 +0100 Message-Id: <20200120110539.1963221-1-thomas@monjalon.net> X-Mailer: git-send-email 2.24.1 MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH] raw/octeontx2_ep: fix shared library X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The version of the PMD should not be overwritten with LIBABIVER. All internal libs must have the same version. Moreover, specifying LIBABIVER in the driver causes a symbolic link loop: librte_rawdev_octeontx2_ep.so.1 -> librte_rawdev_octeontx2_ep.so.1 Fixes: 56d46d13f736 ("raw/octeontx2_ep: add build infra and device probe") Reported-by: Ferruh Yigit Signed-off-by: Thomas Monjalon Tested-by: Ferruh Yigit --- drivers/raw/octeontx2_ep/Makefile | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/raw/octeontx2_ep/Makefile b/drivers/raw/octeontx2_ep/Makefile index 44fdf89599..1a54bf56f0 100644 --- a/drivers/raw/octeontx2_ep/Makefile +++ b/drivers/raw/octeontx2_ep/Makefile @@ -30,8 +30,6 @@ endif EXPORT_MAP := rte_rawdev_octeontx2_ep_version.map -LIBABIVER := 1 - # # All source are stored in SRCS-y #