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=-3.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED 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 34D97C433DF for ; Thu, 9 Jul 2020 08:22:18 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 107B4206A1 for ; Thu, 9 Jul 2020 08:22:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1594282938; bh=sWUPCkqH0F+VWeWXkIpSdFyGoORAipbqnBL7/L00KRI=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=peafXEAJ8lUHakQBgrY1KEZvfnifF7IXysxYL6JKxAjovXgxylA7N1T9uRa2ZZC/w NkHGYZMbjFF8/r2K0iJaqcxqI/DRjMCGXqzxHPhVDipWkxZB1J5jSkZ63+t5Ro7/xB WCNTEmMycya0dpihy5QIxJY5nxQSBtiNyHHOVPAI= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726387AbgGIIWQ (ORCPT ); Thu, 9 Jul 2020 04:22:16 -0400 Received: from mail.kernel.org ([198.145.29.99]:36674 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726193AbgGIIWQ (ORCPT ); Thu, 9 Jul 2020 04:22:16 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 5EA962073A; Thu, 9 Jul 2020 08:22:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1594282936; bh=sWUPCkqH0F+VWeWXkIpSdFyGoORAipbqnBL7/L00KRI=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=lYcTEJoMoMqtKh5vR+jIJ5hb8KNVidfBziGOvLOHAIDbTZForqDLuDalCGCGaoBT/ OEVZJIkaySQC8gihrEgIxq0hfCrpbD+GgCklkQX31yNUCyfia6JsB3XFrV+C3ma92i wpJM6qpxtugoTybI2It+NsuPnkfM36QdumpcWCXs= Date: Thu, 9 Jul 2020 10:22:22 +0200 From: Greg Kroah-Hartman To: Kees Cook Cc: "Rafael J. Wysocki" , Ulf Hansson , Kevin Hilman , Pavel Machek , Len Brown , Jan Kiszka , Kieran Bingham , Andrew Morton , Stephen Boyd , Leonard Crestez , linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v2] genpd: Fix up terminology with parent/child Message-ID: <20200709082222.GE13487@kroah.com> References: <202007081629.0840B4CB78@keescook> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <202007081629.0840B4CB78@keescook> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Jul 08, 2020 at 04:32:13PM -0700, 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 parent/child. > > There was one possible exception in the debugfs node > "pm_genpd/pm_genpd_summary" but its path has no hits outside of the > kernel itself when performing a code search[1], and it seems even this > single usage has been non-functional since it was introduced due to a > typo in the Python ("apend" instead of correct "append"). Fix the typo > while we're at it. > > [1] https://codesearch.debian.net/ > > Signed-off-by: Kees Cook Reviewed-by: Greg Kroah-Hartman