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 39D76A00C4 for ; Thu, 5 Jan 2023 09:34:40 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2E4234282D; Thu, 5 Jan 2023 09:34:40 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id 8F798400D4 for ; Thu, 5 Jan 2023 09:34:38 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1672907678; 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=bP88kP9Y4+sd9qIf0P2EkVUEV2bazGk8soMFxStZa8g=; b=ettti7ruLO8Rqbyr5qfMABs4BAR7tuvFulNrYqfXjxYTGe9XU4Cgkb2w25WgMJkwee5Dm7 rRS39BcU6noy5qZq6wa/GoW4zzPb62psKDyPuKZYBqb0/qVMw/7E1QKqBqMTI5U8uNVPlf GaIarSS67v+0m3Kw6Ueh9CPB2U4cItk= Received: from mail-pf1-f200.google.com (mail-pf1-f200.google.com [209.85.210.200]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_128_GCM_SHA256) id us-mta-460-bQDqWbvWPb-zjcT2w42iQA-1; Thu, 05 Jan 2023 03:34:37 -0500 X-MC-Unique: bQDqWbvWPb-zjcT2w42iQA-1 Received: by mail-pf1-f200.google.com with SMTP id y19-20020a056a001c9300b00582edb0bf88so2536152pfw.6 for ; Thu, 05 Jan 2023 00:34:36 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=bP88kP9Y4+sd9qIf0P2EkVUEV2bazGk8soMFxStZa8g=; b=GIjC7pLz/VL/hUlA4BhCY1j85ZmSgAZxYr643iu5h4acoCMsO/KyqOHv3DK+TN3NYj Nj8ppzxcaQ+6SPAX/hAnlk/dlJt1jZ8X2agkoK9wG/LTHQwe0lN2bpuLENU66wpodUc/ aYzz9rwTM5amLo5Ph6aDG1MVPq9/OCEFg55L21QGHHsEZd3DzhbjaCGyhlszl7yg8tqD G2vv2OSsi75B3WTFQhaRIi6h4UjH+CakRJ1Qzm7yfoTzovGfYWj8LFOb202vIhlgIS/X GWztBgC9kRpHsKYm21CSQQ3TYH5F8KVyqW9+EwetGpv3ZboQihBP91e0GbuNZLI9WFaC C3/Q== X-Gm-Message-State: AFqh2krnkddTyOlxrlKSj2R4RblGu1SA4pNOACx+IYKoh/VbHyB1UvoT aWNJ6/WAXV5G1B9TiurGj20nhKTs1i4Drnkv4HjX8eDn/yhM4UCdCKFxKBAN2G6LtP3emi2tVVC GgVO0VIO6yFkoyTzfixJSULk= X-Received: by 2002:a63:6501:0:b0:479:4c30:9cb4 with SMTP id z1-20020a636501000000b004794c309cb4mr3749291pgb.426.1672907675929; Thu, 05 Jan 2023 00:34:35 -0800 (PST) X-Google-Smtp-Source: AMrXdXt62ORL6KBD2xM14fuA2VsGHofGmvY5mKlgDXw3uEMGOIMJ4wFhSuWO3hWVNGl0TV2PIX0bXlhT2PsXAI+E71Y= X-Received: by 2002:a63:6501:0:b0:479:4c30:9cb4 with SMTP id z1-20020a636501000000b004794c309cb4mr3749282pgb.426.1672907675650; Thu, 05 Jan 2023 00:34:35 -0800 (PST) MIME-Version: 1.0 References: In-Reply-To: From: David Marchand Date: Thu, 5 Jan 2023 09:34:23 +0100 Message-ID: Subject: Re: [dpdk-dev] [PATCH 1/1] eal: fix error log in rte_dev_probe To: Yunjian Wang , Thomas Monjalon Cc: dev@dpdk.org, qi.z.zhang@intel.com, anatoly.burakov@intel.com, huangshaozhang@huawei.com, stable@dpdk.org, Lipei Liang X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Hi Yunjian, Thomas, On Mon, Dec 5, 2022 at 9:02 AM Yunjian Wang wrote: > > In the device probing, there is no need to log the error message in the > case, that device has been already probed and return with -EEXIST. > > Fixes: 244d5130719c ("eal: enable hotplug on multi-process") > Cc: stable@dpdk.org > > Signed-off-by: Lipei Liang > Signed-off-by: Yunjian Wang It seems it is a partial fix and a duplicate work for: https://patchwork.dpdk.org/project/dpdk/patch/20190302024253.15594-3-thomas@monjalon.net/ This patch is part of a series: https://patchwork.dpdk.org/project/dpdk/list/?series=3612 I see no activity on it, but there were some comments. Thomas, do you intend to work on this series of yours? -- David Marchand