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 C3A9C42CBA; Wed, 14 Jun 2023 21:39:55 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9831140E0F; Wed, 14 Jun 2023 21:39:55 +0200 (CEST) Received: from mail-pg1-f174.google.com (mail-pg1-f174.google.com [209.85.215.174]) by mails.dpdk.org (Postfix) with ESMTP id 6B59540DDB for ; Wed, 14 Jun 2023 21:39:53 +0200 (CEST) Received: by mail-pg1-f174.google.com with SMTP id 41be03b00d2f7-51452556acdso3840128a12.2 for ; Wed, 14 Jun 2023 12:39:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20221208.gappssmtp.com; s=20221208; t=1686771592; x=1689363592; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:subject:to:from:date:from:to:cc:subject:date:message-id :reply-to; bh=r0Z0memttfGUGdK4+c2VjAg5fEj1LglviYRCtHQ/pAY=; b=paMJl2/FYzs0AHvTm+HL2gNuE0pcE2OvQEAF8MbxipvtrsB41LONM9rjz/LTij7GXq Heym4HIz5ykNAkc3U/PfU8kUg/YLxA4fcyHfoQxelB9C1qGFwHXkkhBZvk0ncaZKdPHy InZ45iLV/WUbM/vYZFrdd3hUNnxMxvjoMTRokCGh7PYTt/YtZcQcg5aW+vwiO6na8nIc 1PjzjnQab+amhsghh9Ou4u5H5QhXAre1uTXbQikmwg952HnyZZFLg1jc7GjjnH4IUxNu mUtn6zAk7FNTJHnuwvmyJ84fgAD5HDSk3x8D1537j1xPOcayoPbLdl6Hmv6zBNtlfJro wFmQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20221208; t=1686771592; x=1689363592; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:subject:to:from:date:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=r0Z0memttfGUGdK4+c2VjAg5fEj1LglviYRCtHQ/pAY=; b=AU+mcjtXmLtsTthX3dP9CE+p5rC1XEDNf3VhzKNRwojrwgWIzy4TdHbbL0BejC5d/m 93DdpNXxBVxQ4cYjL/DoSamN0cESePvs9uOkmiH+vm5ZXx7H6KgQ/+4rb1eWOIZdyfSl yCtVKvT033KE4e458BGispd7O7MfBfbUBL/ABLZe7c2HeOqcAShKxpuukrEZZsBjrVun tKTSw8JQANuQOBkGuUok8aLy85d2u8BfhePvpi0qcX0vcuzjnGjfCj8FiFaW2wjyyt/W qH3Qo9CdHPLlJUVn3gi7SiAC6ZoPDc1Z2MZdQ2WvXisf9/+aGgvcKIHeN2Y2mSn4tIZf TC2w== X-Gm-Message-State: AC+VfDypj0+oQ5ciPshLk57yamZ2/9SeRppaDPYHs7rwS5ZYIxNwfX/C lx/4sdYc+mus9oZoeFNVTPa/GVewYzNRVXPsg158tA== X-Google-Smtp-Source: ACHHUZ4COnVOm8kqk5QLqzmbuApmXPt7KTJtFlKXAPRY9u5NaGWStoVLzSVzMxDd5IStZBDANr0Qcg== X-Received: by 2002:a17:90a:cb81:b0:25c:9f6:fc49 with SMTP id a1-20020a17090acb8100b0025c09f6fc49mr1866992pju.42.1686771592230; Wed, 14 Jun 2023 12:39:52 -0700 (PDT) Received: from hermes.local (204-195-120-218.wavecable.com. [204.195.120.218]) by smtp.gmail.com with ESMTPSA id gq20-20020a17090b105400b0024de3dff70esm6596627pjb.56.2023.06.14.12.39.51 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 14 Jun 2023 12:39:51 -0700 (PDT) Date: Wed, 14 Jun 2023 12:39:49 -0700 From: Stephen Hemminger To: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH 0/3] fix error path of multi-process probe Message-ID: <20230614123949.06da4bc9@hermes.local> In-Reply-To: <20190302024253.15594-1-thomas@monjalon.net> References: <20190302024253.15594-1-thomas@monjalon.net> 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 Sat, 2 Mar 2019 03:42:50 +0100 Thomas Monjalon wrote: > While working on multi-process support of failsafe with Raslan, > some issues have been discovered on probing failures. > > Thomas Monjalon (3): > eal: remove useless checks for already probed device > eal: remove error logs for already probed device > eal: fix multi-process probe failure handling > > lib/librte_eal/common/eal_common_dev.c | 31 ++++++++++---------------- > lib/librte_eal/common/eal_private.h | 2 +- > lib/librte_eal/common/hotplug_mp.c | 14 +++++++----- > 3 files changed, 21 insertions(+), 26 deletions(-) > Is this old patch set relevant. Seems like it addressing a "this should never happen but if it does don't be stupid" kind of scenario. Marking it as "Changes Requested" since rebase and retest would be needed.