From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <keith.wiles@intel.com>
Received: from mga05.intel.com (mga05.intel.com [192.55.52.43])
 by dpdk.org (Postfix) with ESMTP id D4B9FF92F
 for <dev@dpdk.org>; Fri, 10 Feb 2017 00:42:43 +0100 (CET)
Received: from fmsmga005.fm.intel.com ([10.253.24.32])
 by fmsmga105.fm.intel.com with ESMTP; 09 Feb 2017 15:42:42 -0800
X-ExtLoop1: 1
X-IronPort-AV: E=Sophos;i="5.35,138,1484035200"; d="scan'208";a="63294733"
Received: from fshahid-mobl2.amr.corp.intel.com ([10.254.19.238])
 by fmsmga005.fm.intel.com with ESMTP; 09 Feb 2017 15:42:42 -0800
From: Keith Wiles <keith.wiles@intel.com>
To: dev@dpdk.org
Cc: iryzhov@nfware.com
Date: Thu,  9 Feb 2017 17:42:24 -0600
Message-Id: <20170209234233.63333-3-keith.wiles@intel.com>
X-Mailer: git-send-email 2.10.1
In-Reply-To: <20170209234233.63333-1-keith.wiles@intel.com>
References: <20170209234233.63333-1-keith.wiles@intel.com>
In-Reply-To: <20170209181450.58466-1-keith.wiles@intel.com>
References: <20170209181450.58466-1-keith.wiles@intel.com>
Subject: [dpdk-dev] [PATCH v2 02/11] doc/faq: use corelist instead of
	coremask
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Thu, 09 Feb 2017 23:42:44 -0000

Signed-off-by: Keith Wiles <keith.wiles@intel.com>
---
 doc/guides/faq/faq.rst | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/doc/guides/faq/faq.rst b/doc/guides/faq/faq.rst
index 5a324b2..98c1e33 100644
--- a/doc/guides/faq/faq.rst
+++ b/doc/guides/faq/faq.rst
@@ -54,7 +54,7 @@ If you need to change the number of pages, it is easier to first remove the page
 See the "Quick Start Setup Script" section in the :ref:`DPDK Getting Started Guide <linux_gsg>` for more information.
 
 
-If I execute "l2fwd -c f -m 64 -n 3 -- -p 3", I get the following output, indicating that there are no socket 0 hugepages to allocate the mbuf and ring structures to?
+If I execute "l2fwd -l 0-3 -m 64 -n 3 -- -p 3", I get the following output, indicating that there are no socket 0 hugepages to allocate the mbuf and ring structures to?
 ----------------------------------------------------------------------------------------------------------------------------------------------------------------------
 
 I have set up a total of 1024 Hugepages (that is, allocated 512 2M pages to each NUMA node).
@@ -80,6 +80,8 @@ For example, if your EAL coremask is 0xff0, the master core will usually be the
 
    taskset 0x10 ./l2fwd -c 0xff0 -n 2
 
+.. Note: Instead of '-c 0xff0' use the '-l 4-11' as a cleaner way to define lcores.
+
 In this way, the hugepages have a greater chance of being allocated to the correct socket.
 Additionally, a ``--socket-mem`` option could be used to ensure the availability of memory for each socket, so that if hugepages were allocated on
 the wrong socket, the application simply will not start.
-- 
2.8.0.GIT