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 0BBACA04C7; Tue, 15 Sep 2020 17:58:28 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id DF58C1C0D9; Tue, 15 Sep 2020 17:58:27 +0200 (CEST) Received: from mail-pl1-f195.google.com (mail-pl1-f195.google.com [209.85.214.195]) by dpdk.org (Postfix) with ESMTP id AA9201C0C2 for ; Tue, 15 Sep 2020 17:58:26 +0200 (CEST) Received: by mail-pl1-f195.google.com with SMTP id e4so1570159pln.10 for ; Tue, 15 Sep 2020 08:58:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=date:from:to:subject:message-id:in-reply-to:references:mime-version :content-transfer-encoding; bh=WSSzP3VmwAjs62bosVljb4RfI/tbPBodpa9mlqbANWo=; b=yM76/jUfWFvj0baAD4Nx7jcQDVk+4yrmHPnJ+txP05sgJiQJ8VJPPFVYanZwFaqr0w O+JTbyqEqylVFNoA0kbYePM+yQpCoVVunCHXJBxBOamCmtUNUHQrvfiDN+oa057IBRLn 6C/N4Q8qliEWTrja4/l75DlJpfZb4aQTHWFtuj6E8BEsqmJI22qHetcLJ48uzPkhym20 pqbxZlrduYsW/GsV6fiHO7EcIL71FyVM5P7sPaLXmzl51WNQq+Pc7XVmU4dooGw4EON2 hAa2XElK0PfJP9RJY9AS1wgsY95wMdA07Etn5RgKCHn831rBD8UDcxEM4WVckWtaFBFv vp9A== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=WSSzP3VmwAjs62bosVljb4RfI/tbPBodpa9mlqbANWo=; b=eCMDn8dXDyKJ53qlzk61j0HPFVlVMu392+Jwjw9DvqIxJ5lgBiXt4vT32i6DmrTTGC 9ZdRL/fbUUrcYaQKfDznKSK/iC/+EVpnWrOhN8VaiefEIoUZjle56h0SkB9Rhq7heQ5G w/4FDYluN94c1xGZ+TFp4Uk2wPu9yuENeogv4eIZqB3PcPCmWsjfgPoX20OKURWYwpKx kli0d1NVicCOjriXc2b4+cGT3s199rUypVVk0hJRFNmKyYhrf4va/AHQ+aGwCr1XMx/K wb+KyyIHA6PaHeqedkpVSJkr1ro2DOe4OIs2bS69ePN1oN/H6ADSsb0dUdS+DxU/AEBo nvVQ== X-Gm-Message-State: AOAM531gbcI7RtD40vF31fPdOz18eu8GShd/vfsXoghtOqqNsQSnpOl4 Tx1wIWfZOOpn7BTzuwzNLoZ+lLThpCFetg== X-Google-Smtp-Source: ABdhPJyx1YDV+MPCD1i5TRsOXTDDugRO91DaVIx3iGNb40Z1QwBRrwYrTk/MDGmH6UXOoWTiQyIz5A== X-Received: by 2002:a17:90b:108e:: with SMTP id gj14mr26454pjb.225.1600185505404; Tue, 15 Sep 2020 08:58:25 -0700 (PDT) Received: from hermes.lan (204-195-22-127.wavecable.com. [204.195.22.127]) by smtp.gmail.com with ESMTPSA id q190sm14628140pfc.176.2020.09.15.08.58.24 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 15 Sep 2020 08:58:25 -0700 (PDT) Date: Tue, 15 Sep 2020 08:58:17 -0700 From: Stephen Hemminger To: dev@dpdk.org Message-ID: <20200915085817.5204d39d@hermes.lan> In-Reply-To: <20200915151114.12024-1-stephen@networkplumber.org> References: <20200911190701.29171-1-stephen@networkplumber.org> <20200915151114.12024-1-stephen@networkplumber.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v3 00/17] Replace terms master/slave 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 Tue, 15 Sep 2020 08:10:57 -0700 Stephen Hemminger wrote: > As announced in 20.08 release notes, the terms for lcore role > will change in 20.11 release. > > This is a project wide patchset to terminolgy used for DPDK lcore. > The term "master" referring to lcore is replaced with "main" and > "slave" lcore is replaced with "worker" lcore. > > This is most visible in API for rte_get_master_lcore() which is > replaced with rte_get_main_lcore(). And the macros for iterating > over lcores are replaced as well. > > The first patch introduces a way to mark macro's as deprecated > as well. > > Note: this patch will fail checkpatch because current versions > of checkpatch flag use of master/slave as an error. Also, > until the whole patch series is applied, the build will generate > non-fatal warnings. > > v3 > - incorporate still more places where master/slave was still used > > v2 > - fix more places found by Anatoly and grep > - add coding style update > - add memif changes > I have some whitespace fixes for v4 pending. Will put any other comments in there.