From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id C65B742DDE; Thu, 6 Jul 2023 01:37:37 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id AEB1E40144; Thu, 6 Jul 2023 01:37:37 +0200 (CEST) Received: from mail-ot1-f52.google.com (mail-ot1-f52.google.com [209.85.210.52]) by mails.dpdk.org (Postfix) with ESMTP id 86A35400D5 for ; Thu, 6 Jul 2023 01:37:36 +0200 (CEST) Received: by mail-ot1-f52.google.com with SMTP id 46e09a7af769-6b44b5adfd3so79621a34.3 for ; Wed, 05 Jul 2023 16:37:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20221208.gappssmtp.com; s=20221208; t=1688600256; x=1691192256; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:subject:cc:to:from:date:from:to:cc:subject:date :message-id:reply-to; bh=sfZi3L3BOjroGS21pA1S4BlfrIgsXwJHaZsuTGMLS/M=; b=ziMiqIE+MkzWAleLdrqJfBjAGasD/t/JRCRLI9/dF5V430z0wSjiEMYE+/pK8NhlB/ fTQGT/2G70b2Kp8G7eoqCdhNMtBtNTEoXzK4YmsJQIzEBweBvFWa+LjFcfCZ6J30hKvS 0tYaS/n/CpVz+8lrOY3rTdpUaHuupYsvlTgxqG9JMtnJ6iR92ETkPDmCxenAs1gKzu0o VlqiEWAnksrwMUcxjaghUvTK0FrorqZBgHV4m4+yqGmPBPj/COxzFOmzFzbotK3NpssY qHCHiAEtjVWcM21AtLJjYM48UggadWDRYF/9M/+Od+LX2xW3QJItddVeWmeem22hLpL0 GgAQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20221208; t=1688600256; x=1691192256; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:subject:cc:to:from:date:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=sfZi3L3BOjroGS21pA1S4BlfrIgsXwJHaZsuTGMLS/M=; b=Bjqizb6sCFKLAW+OitwBktCKprHmu/MIz78m2/KG9TC4sG5QNqxhU439hEOIfrYhDj 9Wg4DJG5Rn36T5qhaTn6VRTH2/9FUOUkQ8bMy6ArQXpgjXcLyd6DWiFBxkIviWofzOIG x6huW/SsrysHzfTe5GurwtUH6/bVGnYHjwauaZI0x3sj/okx2xQi0dEsZ0lNiA1Ctmvz 7Yqsvm5ayssZ46X2+ybrB0iYcfNEq9ElNvEUv4U3dbbFvyk/DobLC8USulRNNI76vK7r vYwm9gZWXIsgWXExfQiD4qu6ZTekkRSeWZYrLkHmd3446JX/5R88dbvgh8ILepNofVob ttZw== X-Gm-Message-State: ABy/qLaiKXXrIPuvyUExPptULREwuG3R1F2i4amJRKFNYnPm37KlQ6hZ 9yZSUIbNTbsqOuqk8GURgySyAQ== X-Google-Smtp-Source: APBJJlE6/7rILbnJ+lR3RJM2WGU/WRxnLqTgwqtKvUBuqxSitXNAPbM26jNL8IUzoHQ8DX40+PRZYg== X-Received: by 2002:a05:6358:5294:b0:133:6c9:c43 with SMTP id g20-20020a056358529400b0013306c90c43mr395797rwa.30.1688600255695; Wed, 05 Jul 2023 16:37:35 -0700 (PDT) Received: from hermes.local (204-195-120-218.wavecable.com. [204.195.120.218]) by smtp.gmail.com with ESMTPSA id p18-20020a170902ead200b001b8a897cd26sm25582pld.195.2023.07.05.16.37.35 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 05 Jul 2023 16:37:35 -0700 (PDT) Date: Wed, 5 Jul 2023 16:37:03 -0700 From: Stephen Hemminger To: rohit.raj@nxp.com Cc: Ray Kinsella , Neil Horman , dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH v2 1/3] eal: add API for bus close Message-ID: <20230705163658.0fd5866c@hermes.local> In-Reply-To: <20200824082414.30535-1-rohit.raj@nxp.com> References: <20200824082414.30535-1-rohit.raj@nxp.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org On Mon, 24 Aug 2020 13:54:12 +0530 rohit.raj@nxp.com wrote: > From: Rohit Raj > > As per the current code we have API for bus probe, but the > bus close API is missing. This breaks the multi process > scenarios as objects are not cleaned while terminating the > secondary processes. > > This patch adds a new API rte_bus_close() for cleanup of > bus objects which were acquired during probe. > > Signed-off-by: Rohit Raj This patchset got some good feedback but stalled at version 5. Marking it as "Changes requested". Please rebase and resubmit