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 93C9BA32A4 for ; Fri, 25 Oct 2019 17:02:07 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id B7BFF1C117; Fri, 25 Oct 2019 17:02:06 +0200 (CEST) Received: from mail-io1-f66.google.com (mail-io1-f66.google.com [209.85.166.66]) by dpdk.org (Postfix) with ESMTP id 5D41C1C10B for ; Fri, 25 Oct 2019 17:02:05 +0200 (CEST) Received: by mail-io1-f66.google.com with SMTP id i26so2747540iog.9 for ; Fri, 25 Oct 2019 08:02:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=bWrp486ds7r0T1OGf5r72Knnxpx0OCYkUyStQ8HKTW4=; b=qi6PzlCnase4wIAwwL4Gt4Zgvl8bgi5AYVjujtZnLWJFpO1npJCqhuNgGKnIm4IigG QIiBB0En4k1tlRVGTuEe70ibVKKucH8xnKoh97d0Cc/z6pJK9j9YwP1H2Mk45wA+HBED ZrEDapQ/mJWxRZkZZljKqaIhn3+gasHExeefDOhUSSnai41iKpxanlr5K6BXffC2xY12 CVR26mWdPJ7PQrqMiB/oOOeDBt76CwVK8yIngdZ+EejudNDCCImET0KHXA0x73DcN/CF nVtPp0i8nobuxWOsssDmRTS487d6B94aDi0XQIazE/TWdGZ9xoP0wus/nv6P5V3SeaXl dQnw== 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=bWrp486ds7r0T1OGf5r72Knnxpx0OCYkUyStQ8HKTW4=; b=kK0hZv8tEnXfLQvLVsorg2ygWE2xVHs6N8/lZ7xLg15s7KTSIZRJgfKYWSAJHqBHPD ikV2v/xtqGFVDO/K1QxQVJkEoxIW5zsW1hrVYU3O4gZ9fGkKSSB5yE5aoWyv0U5BOwDX yLhpiA+ldYCZGl+Z2eB3vvG3UwntywuWo6iwAOL0XHk6gtbuxZi+xZRwYgaHjq0VO+OE tOxQhTJsNQz//yq9hcHf4/Di8qS8shV+NYHPYsHu76yM9MPlDu0sMEuDLIgS4ixqoPeS qj3uDQ5jYmRaREUmDuwUQZ+hJB5rTgbbQQcfQegXgii5kWlMyy6xC+1pwMzxqeWEY1M6 Tssg== X-Gm-Message-State: APjAAAXqrdjdQgDI251fXZLwMXoMOBeHjx2CN5Pumr4kfU+k2xO9dnTI zJrC6eoO4QDjOqPTT386s28ljBOLFLBEJDDQFjI= X-Google-Smtp-Source: APXvYqzCLIF9aX0KPiUgZuHrHh5+UQeC1d7FnCSM/Tx3D0WYB8dzVS7GFjzThqikSjcKXSsRdmTrcm9crqM/csuXAaI= X-Received: by 2002:a5e:9515:: with SMTP id r21mr4071071ioj.271.1572015724509; Fri, 25 Oct 2019 08:02:04 -0700 (PDT) MIME-Version: 1.0 References: <5b8ee6827c26356cc009b0b3ff5b8d142b009fa7.1570193349.git.gaetan.rivet@6wind.com> <84075ad163f2eddf752690fc78f1d9bd9f7b0636.1572014017.git.gaetan.rivet@6wind.com> In-Reply-To: <84075ad163f2eddf752690fc78f1d9bd9f7b0636.1572014017.git.gaetan.rivet@6wind.com> From: Jerin Jacob Date: Fri, 25 Oct 2019 20:31:47 +0530 Message-ID: To: Gaetan Rivet Cc: dpdk-dev , Vamsi Krishna Attunuru , David Marchand , Jerin Jacob Kollanukkaran Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH v4] eal: add manual probing option 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 Fri, Oct 25, 2019 at 8:11 PM Gaetan Rivet wrote: > > Add a new EAL option enabling manual probing in the EAL. > This command line option will configure the EAL so that buses > will not trigger their probe step on their own. > > Applications are then expected to hotplug devices as they see fit. > > Devices declared on the command line by the user (using -w and --vdev), > will be probed using the hotplug API, in the order they are declared. > > This has the effect of offering a way for users to control probe order > of their devices, for drivers requiring it. > > Signed-off-by: Gaetan Rivet > --- > > doc/guides/rel_notes/release_19_11.rst | 9 +++++ > lib/librte_eal/common/eal_common_bus.c | 6 ++++ > lib/librte_eal/common/eal_common_dev.c | 54 ++++++++++++++++++++++++++++++ > lib/librte_eal/common/eal_common_options.c | 8 +++++ > lib/librte_eal/common/eal_internal_cfg.h | 1 + > lib/librte_eal/common/eal_options.h | 2 ++ > lib/librte_eal/common/eal_private.h | 9 +++++ > lib/librte_eal/common/include/rte_eal.h | 36 ++++++++++++++++++++ > lib/librte_eal/rte_eal_version.map | 4 +++ Missed to update new eal argument in doc/guides/linux_gsg/eal_args.include.rst file. With the above change: Reviewed-by: Jerin Jacob