From patchwork Sat Jun 17 20:13:45 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Rami Rosen X-Patchwork-Id: 25410 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 8FECA2A58; Sat, 17 Jun 2017 22:13:53 +0200 (CEST) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id DEB30374 for ; Sat, 17 Jun 2017 22:13:51 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 17 Jun 2017 13:13:50 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.39,353,1493708400"; d="scan'208";a="100680151" Received: from imail001.iil.intel.com ([10.184.207.12]) by orsmga002.jf.intel.com with ESMTP; 17 Jun 2017 13:13:49 -0700 Received: from cghost.iil.intel.com (cghost.iil.intel.com [143.185.141.67]) by imail001.iil.intel.com with ESMTP id v5HKDkRk009483; Sat, 17 Jun 2017 23:13:46 +0300 From: Rami Rosen To: dev@dpdk.org Cc: Rami Rosen Date: Sat, 17 Jun 2017 23:13:45 +0300 Message-Id: <1497730425-9449-1-git-send-email-rami.rosen@intel.com> X-Mailer: git-send-email 2.7.4 MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH] doc: fix a typo in sample apps guide. 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" This patch fixes a trivial typo in the sample apps guide. commit 35b09d76f89e ("doc: use corelist instead of coremask") replaced the usage of coremask (-c) with corelist (-l). As a result of this patch, we have ./build/ipv4_multicast -l 0-3 -n 3 -- -p 0x3 -q 1 in the sample app guide, while the explanation immediately following says: In this command: • The -c option enables cores 0, 1, 2 and 3 This patch fixes the explanation to have "-l" instead of "-c". Signed-off-by: Rami Rosen Acked-by: John McNamara --- doc/guides/sample_app_ug/ipv4_multicast.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guides/sample_app_ug/ipv4_multicast.rst b/doc/guides/sample_app_ug/ipv4_multicast.rst index 3e30f5090e68..7d2b27e7c3ed 100644 --- a/doc/guides/sample_app_ug/ipv4_multicast.rst +++ b/doc/guides/sample_app_ug/ipv4_multicast.rst @@ -117,7 +117,7 @@ Typically, to run the IPv4 Multicast sample application, issue the following com In this command: -* The -c option enables cores 0, 1, 2 and 3 +* The -l option enables cores 0, 1, 2 and 3 * The -n option specifies 3 memory channels