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 3AAD9A053B; Fri, 17 Jul 2020 16:01:07 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id D98A31BF7E; Fri, 17 Jul 2020 16:01:06 +0200 (CEST) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id CD4191BF5C for ; Fri, 17 Jul 2020 16:01:04 +0200 (CEST) IronPort-SDR: Tf24Fjp3BRHgQba9YDYjPOBGZ3DBIeh907/Jh8CJOVZ90ElDZkBm1MQ8OeVjExvl9z68gmculn 2SDLsQJsQMpw== X-IronPort-AV: E=McAfee;i="6000,8403,9684"; a="211127899" X-IronPort-AV: E=Sophos;i="5.75,362,1589266800"; d="scan'208";a="211127899" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga006.jf.intel.com ([10.7.209.51]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jul 2020 07:01:03 -0700 IronPort-SDR: alWBVFTsfksLEdpCTyrXWcfr5RCb/OlV6Z+rQTTOWEouZ+svd90U0oQOKYt22T38ZSG7ycwFtE IqWshkq0vq1A== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,362,1589266800"; d="scan'208";a="286820361" Received: from aburakov-mobl.ger.corp.intel.com (HELO [10.213.226.225]) ([10.213.226.225]) by orsmga006.jf.intel.com with ESMTP; 17 Jul 2020 07:01:02 -0700 To: Stephen Hemminger , dev@dpdk.org References: <20200604210200.25405-1-stephen@networkplumber.org> <20200701202359.17006-1-stephen@networkplumber.org> <20200701202359.17006-23-stephen@networkplumber.org> From: "Burakov, Anatoly" Message-ID: <1221e783-4092-0825-1450-926378ead4e3@intel.com> Date: Fri, 17 Jul 2020 15:01:01 +0100 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0 MIME-Version: 1.0 In-Reply-To: <20200701202359.17006-23-stephen@networkplumber.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v4 22/27] doc: update references to master/slave lcore in documentation 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 01-Jul-20 9:23 PM, Stephen Hemminger wrote: > New terms are initial and worker lcores. > > Signed-off-by: Stephen Hemminger > --- > +* **Renamed master lcore to initial lcore.** > + > + The name given to the first thread in DPDK is changed from master lcore to initial lcore. > > Removed Items > ------------- > @@ -122,7 +125,6 @@ Removed Items > > * Removed ``RTE_KDRV_NONE`` based PCI device driver probing. > > - Accidental whitespace change? > @@ -310,8 +310,8 @@ If initialization is successful, memory for hardware device > statistics is allocated. > > Finally ``main()`` function starts all packet handling lcores and starts > -printing stats in a loop on the master lcore. The application can be > -interrupted and closed using ``Ctrl-C``. The master lcore waits for > +printing stats in a loop on the initial lcore. The application can be > +interrupted and closed using ``Ctrl-C``. The initial lcore waits for > all slave processes to finish, deallocates resources and exits. Missed updating a line right below the changes. Also, i think worker cores were meant, not secondary processes. > /* reset the timer */ > diff --git a/doc/guides/sample_app_ug/multi_process.rst b/doc/guides/sample_app_ug/multi_process.rst > index f2a79a639763..51b8db5cf75a 100644 > --- a/doc/guides/sample_app_ug/multi_process.rst > +++ b/doc/guides/sample_app_ug/multi_process.rst > @@ -66,7 +66,7 @@ The process should start successfully and display a command prompt as follows: > > EAL: check igb_uio module > EAL: check module finished > - EAL: Master core 0 is ready (tid=54e41820) > + EAL: Initial core 0 is ready (tid=54e41820) I believe you've missed updating a similar place (EAL logs) in quick start guide. -- Thanks, Anatoly