From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-1.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id A03A0C433E1 for ; Wed, 8 Jul 2020 11:04:59 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 770052067D for ; Wed, 8 Jul 2020 11:04:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1594206299; bh=IHCyGxj1cvpIoNYOX+nc8vjaWSXk9jF7cUyVbUqeMg0=; h=References:In-Reply-To:From:Date:Subject:To:Cc:List-ID:From; b=C2jqoPtX4Ue+QiUwryQq1POKdH09dBJFNTEfdXwVpN3mJEyzpZNpx6junvsbGgpyA hCXUFb54/E6MWyagptxSNg9+kQ/+/9Le/z3gBQx+vrPHYnTtBVkNvdqtddwbJGDqEg 7Wxj2Fn4iSHT6wQp022vu2+v0sy86UozUfnxR6Dg= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728589AbgGHLEw (ORCPT ); Wed, 8 Jul 2020 07:04:52 -0400 Received: from mail-ot1-f66.google.com ([209.85.210.66]:34709 "EHLO mail-ot1-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728385AbgGHLEw (ORCPT ); Wed, 8 Jul 2020 07:04:52 -0400 Received: by mail-ot1-f66.google.com with SMTP id e90so6082819ote.1; Wed, 08 Jul 2020 04:04:51 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=IHCyGxj1cvpIoNYOX+nc8vjaWSXk9jF7cUyVbUqeMg0=; b=J1Z3boooAV5Cn+Kp5oI8251HzkrPIExYbm/sVOlh+QQ928bqYOra/OSqZGr04bcI+w J4mOTlNJbjg5NPW2ebhNtPgXUBV1nn2E1A2kt0tRiHcXblNv8sofqPYRi32igW30DYCy T3ceyHrQR8P0jFEchMCAEYxR4SMC2W7QrOcicmvkboiCRXP51S/KySy0dzF0RcrQd2yM SdqSgT3FErJobV5rfnu+Ai8Y+iJcNd0K6+1GCcSrBnXu0lULkuqLJuaImk4TXgJeZotu uQm346UwL4D3Trujy5X5UvOKhJ8fJiJL6ItEtF3TQb6a7OMAwC74L6LY6LPIGBQSKuG2 nuaw== X-Gm-Message-State: AOAM532XKjbVxegZVwmQ62l1oRHGUxqTj60cQDWTDGejuQnoFPgDG0fz Ird13t4uZfkKo8jC1jucH55/6ckdMSiomxwnFbk= X-Google-Smtp-Source: ABdhPJx0pYxRbD1A4YMqTXjB55nDwyDRMhKrjXyrUYVPPyCD8Vl+kVThCEsAAO/sNGwFVTx7mhc5bKdEBSapC4H9cgM= X-Received: by 2002:a9d:590a:: with SMTP id t10mr12704394oth.262.1594206290904; Wed, 08 Jul 2020 04:04:50 -0700 (PDT) MIME-Version: 1.0 References: <202007080131.3E6D0858@keescook> In-Reply-To: From: "Rafael J. Wysocki" Date: Wed, 8 Jul 2020 13:04:38 +0200 Message-ID: Subject: Re: [PATCH] genpd: Fix up terminology with leader/follower To: Ulf Hansson Cc: Kees Cook , "Rafael J. Wysocki" , "Rafael J. Wysocki" , Dan Williams , Greg Kroah-Hartman , Kevin Hilman , Len Brown , Pavel Machek , Jan Kiszka , Kieran Bingham , Stephen Boyd , Leonard Crestez , Andrew Morton , Linux PM , Linux Kernel Mailing List Content-Type: text/plain; charset="UTF-8" Sender: linux-pm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org On Wed, Jul 8, 2020 at 11:04 AM Ulf Hansson wrote: > > On Wed, 8 Jul 2020 at 10:35, Kees Cook wrote: > > > > The genpd infrastructure uses the terms master/slave, but such uses have > > no external exposures (not even in Documentation/driver-api/pm/*) and are > > not mandated by nor associated with any external specifications. Change > > the language used through-out to leader/follower. > > In my opinion this doesn't really make it more clear, but rather the opposite. > > If we should improve, I suggest using "parent" and "child" instead. As > matter of fact, that's already the de-facto terminology that people > are using when talking about master/subdomains of genpd. IMO "parent" and "child" would be better indeed, because genpd only supports strict hierarchies. Thanks!