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 7F0FDA0352; Wed, 6 May 2020 05:00:33 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id C71ED1D68D; Wed, 6 May 2020 05:00:32 +0200 (CEST) Received: from mail-oi1-f194.google.com (mail-oi1-f194.google.com [209.85.167.194]) by dpdk.org (Postfix) with ESMTP id 593FF1D683 for ; Wed, 6 May 2020 05:00:31 +0200 (CEST) Received: by mail-oi1-f194.google.com with SMTP id s202so463665oih.3 for ; Tue, 05 May 2020 20:00:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=broadcom.com; s=google; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=oAbVHLEejcTw2LZpEQRRuMFm5RX8cyiimSki3ZOpIp8=; b=NsYqzV14I2XSd94HR7ELlQ/xyMcMAwyafVHvVF8DPEW4VS3/jR7SKMWozTJC1oketY Q58FaDQJbKaa1TvFhKzZDW1fTPwskSblnN3Rqd15xXGRnaSuIs4M3leQnP0twQK/kwrR bkxpM7+Lh/bs5oxMXYBvQxqfKM20IYk220ZhU= 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=oAbVHLEejcTw2LZpEQRRuMFm5RX8cyiimSki3ZOpIp8=; b=Hn86WHyx0C+jf4WCEFjgzah/zW7BCouGPbx5vbLjjbOmaWzPkFT27LrV8pyvr2IPlS +fZiALZCrL0ohfqYIbQwXhPqa5pXxrC9/O2EIRB8+oZ53C9UC7sIZ+Lskcm6r8PO4PaY jF4euRuBW/3rJzIau40l4gvFSSSq7LIOB/xMMmJIdNJnxFZXnnnUzmdli54WQfj4ItTD /vHAbwPXAPHp5cg7yYQHwCCQHOWqWfEOWWhR8RnJxN0euLxRnpGri6mOCUZggEgjndTx RH0snnZZCyPojdP9lf1iy1HvKy5jtbLc6+5W7MdJS1+r3ndSqy6oV9FWc6L14Emhvbti 9+9Q== X-Gm-Message-State: AGi0PuZ1u4PWFSdaCJ/T/w3+ybGGcAVPy1JTKFyyoHULzZ8/5bQqIhFG DJpGbjz70x+TDbJEhCoRrlSbkE2kuQe04n0Xog818A== X-Google-Smtp-Source: APiQypJg3PEKST7C5EpiiUW0r2FEJV5AvdiV48HJYo8x7BR4BBKyUQ7S6izyjVs66pvOU/yyBzA7Os1c35X3hcl+gAQ= X-Received: by 2002:aca:d585:: with SMTP id m127mr1265430oig.27.1588734029525; Tue, 05 May 2020 20:00:29 -0700 (PDT) MIME-Version: 1.0 References: <1584452772-31147-1-git-send-email-wisamm@mellanox.com> <20200409154257.11539-1-wisamm@mellanox.com> In-Reply-To: <20200409154257.11539-1-wisamm@mellanox.com> From: Ajit Khaparde Date: Tue, 5 May 2020 20:00:13 -0700 Message-ID: To: Wisam Jaddo Cc: dpdk-dev , jackmin@mellanox.com, Jerin Jacob , Thomas Monjalon Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: Re: [dpdk-dev] [PATCH 1/5] app/test-flow-perf: add flow performance skeleton 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" ::snip:: > + > +Running the Application > +======================= > + > +EAL Command-line Options > +------------------------ > + > +Please refer to :doc:`EAL parameters (Linux) > <../linux_gsg/linux_eal_parameters>` > +or :doc:`EAL parameters (FreeBSD) > <../freebsd_gsg/freebsd_eal_parameters>` for > +a list of available EAL command-line options. > + > + > +Flow performance Options > +------------------------ > + > +The following are the command-line options for the flow performance > application. > +They must be separated from the EAL options, shown in the previous > section, with > +a ``--`` separator: > + > +.. code-block:: console > + > + sudo ./test-flow-perf -n 4 -w 08:00.0,dv_flow_en=1 -- > Since this is a generic usage doc, the specific arg should not be specified here. This example could be in the vendor/pmd specific usage guide though. > + > +The command line options are: > + > +* ``--help`` > + Display a help message and quit. > diff --git a/doc/guides/tools/index.rst b/doc/guides/tools/index.rst > index 782b30864e..7279daebc6 100644 > --- a/doc/guides/tools/index.rst > +++ b/doc/guides/tools/index.rst > @@ -16,3 +16,4 @@ DPDK Tools User Guides > cryptoperf > comp_perf > testeventdev > + flow-perf > -- > 2.17.1 > >