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 2E57EA034E for ; Thu, 4 Jun 2020 12:00:00 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 133821D5F3; Thu, 4 Jun 2020 12:00:00 +0200 (CEST) Received: from mail-wr1-f68.google.com (mail-wr1-f68.google.com [209.85.221.68]) by dpdk.org (Postfix) with ESMTP id A08741D5E6 for ; Thu, 4 Jun 2020 11:59:57 +0200 (CEST) Received: by mail-wr1-f68.google.com with SMTP id x6so5352917wrm.13 for ; Thu, 04 Jun 2020 02:59:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=emumba-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id; bh=HYmQQbKBn93pH26cTtI8SC8YUN8QkytvN5nbeDGblik=; b=EVMc78spBymS/YNQkcBaB/DdSEEWcC7FGv1LbE1MIbrhJj8/mmqDdM3xPiQ1Q2q9iR 5FpJkAZZjikA3CBB1sYqec2bxXf8ZIw3Ni2NzhVr2CihH4RIqhTZ8rmQvreKrnDVhI1h n5q6Mg7gv6ChIHLIz+97/bEy1j7z7L9vmvUajSkVeGdq+3WunDT1ugjUcFub1ialhzUb 89VLCK7G06q65Mwnw/nXxL7n8ETkV6Gq6IjWkxabTf3n/q0it4MsMialdPz+u0Ac3KqG 1av8qNLJBxkERrXuuv0LzfXtbRqM/Ma6QJ2dQtqaN2F0Xvgicakiet7r5iiP4zJcQMKJ 4o7Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=HYmQQbKBn93pH26cTtI8SC8YUN8QkytvN5nbeDGblik=; b=eBVx6mUHISAKFLiADEuk6+HFQpkhnJuGCtuKQA6igSvEeYVtssArS9QMURDizE4RnL UqUBtcHEXdx85MkGnUTirValNXNr5KdQSnMFI8qOqP/ShiRMj3jxgA8EWcnPDIj0PYqH twSzZIYDEK9YU3Fxizdj8l1h7D+vYta39S6Fa2VzT4CSGDNk/9zFAJ/0t8Bje363DBrh tGGZRs4ijJP9abHmjKzSGvh3cGNmW0f8mPptM+vcAdnjyo1zr/z3RwoepBW6DoFv6rXB iR91m238H/ZNQzYhTHftQX/xg1GwBiL9zmnHnGUeWzmLGyYs3SQEo2hh3PNtMPHTAu98 2dQg== X-Gm-Message-State: AOAM530SEk2EN8qv4xEsZ3rkuGO/TfU4D7kJKLN+lccePkoDwfrctEPL r26s3lA/NUaFNxP8NNu6VjmmPA== X-Google-Smtp-Source: ABdhPJyJ87isfl3rQ7V5PJrhVlC9u4SY8jCU9ijlP5a5sJS2Sz4Z3Mhph/2AhSVljdn96hlVWRpwpw== X-Received: by 2002:a05:6000:1003:: with SMTP id a3mr3548927wrx.111.1591264797079; Thu, 04 Jun 2020 02:59:57 -0700 (PDT) Received: from localhost.localdomain ([39.40.76.82]) by smtp.gmail.com with ESMTPSA id 94sm8067757wrf.74.2020.06.04.02.59.54 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 04 Jun 2020 02:59:56 -0700 (PDT) From: Sarosh Arif To: dev@dpdk.org, remy.horton@intel.com Cc: stable@dpdk.org, Sarosh Arif Date: Thu, 4 Jun 2020 14:59:31 +0500 Message-Id: <20200604095931.18512-1-sarosh.arif@emumba.com> X-Mailer: git-send-email 2.17.1 Subject: [dpdk-stable] [PATCH] doc/guides/sample_app_ug: fix ethtool app path X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 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 Sender: "stable" The path to the ethtool application was slightly incorrect in the documentation. This patch corrects that path. Fixes: bda68ab9d1e7 ("examples/ethtool: add user-space ethtool sample application") Cc: remy.horton@intel.com Signed-off-by: Sarosh Arif --- doc/guides/sample_app_ug/ethtool.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guides/sample_app_ug/ethtool.rst b/doc/guides/sample_app_ug/ethtool.rst index 8f7fc6ca6..b9997df06 100644 --- a/doc/guides/sample_app_ug/ethtool.rst +++ b/doc/guides/sample_app_ug/ethtool.rst @@ -24,7 +24,7 @@ The only available options are the standard ones for the EAL: .. code-block:: console - ./ethtool-app/ethtool-app/${RTE_TARGET}/ethtool [EAL options] + ./ethtool-app/${RTE_TARGET}/ethtool [EAL options] Refer to the *DPDK Getting Started Guide* for general information on running applications and the Environment Abstraction Layer (EAL) -- 2.17.1