From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 8E3D9A09D3; Thu, 12 Nov 2020 14:29:06 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 08850569B; Thu, 12 Nov 2020 14:29:04 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [63.128.21.124]) by dpdk.org (Postfix) with ESMTP id CDE484CA6 for ; Thu, 12 Nov 2020 14:29:01 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1605187740; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=hmQfyTD7CtJJCwTmTWcV9Cnbs8AOG8jCUeL3ori1ky0=; b=gN+lv5Gf+hD8o6lrJcQo5+o4HuW++ZSBXVUcBlCvVbpz/FW74K/AOhJdNjofKphV2TZldV shBSklvtb5Txo3qYFHZW7neU1xjk2LDqSPuMheZhntALjFbFpXQPbT/TdDnI3hEo+hnLme Og71u+4L2vlCLakOKpoEc2z9p8E6upM= Received: from mail-vk1-f199.google.com (mail-vk1-f199.google.com [209.85.221.199]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-388-wVuhvJtsMXydS4hHKTwP5Q-1; Thu, 12 Nov 2020 08:28:58 -0500 X-MC-Unique: wVuhvJtsMXydS4hHKTwP5Q-1 Received: by mail-vk1-f199.google.com with SMTP id g3so1520129vkl.13 for ; Thu, 12 Nov 2020 05:28:58 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=hmQfyTD7CtJJCwTmTWcV9Cnbs8AOG8jCUeL3ori1ky0=; b=lgmzKxPiQMJqvaOj7ju7osZlNWO/vtT5jD+Tx2ZZkLaZ/8IXH7w5mwg2J1EpmxoMh3 byBY/DfrYSLwGgt6HPtkN2DjU57CyY8klvgt5frrLavwDcaZqUENdqJfKY4rtLmx2PuJ zSeJDdFvROIBlEBWtEotfL8hAzA9IxgW74duLIe+85NcpT3elVB5fzKTQPwirpgQvS6I QNk/PC6PCoTRfcKLKETD8Ev7xy1RzE0EWPLVAEpAxAHCknEtHFRAgl9rsAwROWc8xjsz t+oB8yDnsH6nzV09tX3dx/mO/E28+Z2hHSUUviBdLCIUov78oe/yIZ5UsNoKFjJywsBy ocpQ== X-Gm-Message-State: AOAM530w+0i71V6/ERzD3bpiTJTUypzj2SHSP7Ea/l0t6x2OzLLO0GyP +UGrwWkJWxHOMIPmRa2PjWcZ5ID2rulsGaUkMSppQwSGsMO1C+cOppweV8zcvPZDIGNpBHdGP/W VHUsuUZUrJ1HAYn6FpTc= X-Received: by 2002:a67:f8c5:: with SMTP id c5mr19469581vsp.18.1605187738181; Thu, 12 Nov 2020 05:28:58 -0800 (PST) X-Google-Smtp-Source: ABdhPJy9PbtCiSOBACaVh5YIlYhdeEgbPT/WGZ3TCEIG+IZjlyODOqzWhWufgNW8VJWjO59MO9DNeedMcTfDpOFlON8= X-Received: by 2002:a67:f8c5:: with SMTP id c5mr19469561vsp.18.1605187738026; Thu, 12 Nov 2020 05:28:58 -0800 (PST) MIME-Version: 1.0 References: <20201103183906.8088-1-david.marchand@redhat.com> <20201104094033.29674-1-david.marchand@redhat.com> In-Reply-To: <20201104094033.29674-1-david.marchand@redhat.com> From: David Marchand Date: Thu, 12 Nov 2020 14:28:46 +0100 Message-ID: To: dev Cc: Bruce Richardson , Robin Jarry , Stephen Hemminger , Olivier Matz , Neil Horman , Rosen Xu , Andrew Rybchenko , Luca Boccassi Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=dmarchan@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH v2] usertools: fix pmdinfo parsing 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" On Wed, Nov 4, 2020 at 10:41 AM David Marchand wrote: > > This script inspects an ELF file (binary or shared library) and its > linked dependencies by following DT_NEEDED tags. > So far a simple librte_pmd prefix was used as a filter. > Now that we changed the driver library names, update this heuristic with > an explicit list of all driver classes. > > Fixes: a20b2c01a7a1 ("build: standardize component names and defines") > > Signed-off-by: David Marchand > Acked-by: Robin Jarry Acked-by: Bruce Richardson Applied, thanks. -- David Marchand