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=-5.2 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED, USER_AGENT_SANE_1 autolearn=unavailable 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 7411EC433DF for ; Tue, 2 Jun 2020 11:31:44 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 5E65F2068D for ; Tue, 2 Jun 2020 11:31:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726485AbgFBLbj (ORCPT ); Tue, 2 Jun 2020 07:31:39 -0400 Received: from foss.arm.com ([217.140.110.172]:49630 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725900AbgFBLbi (ORCPT ); Tue, 2 Jun 2020 07:31:38 -0400 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id B08A931B; Tue, 2 Jun 2020 04:31:37 -0700 (PDT) Received: from [10.37.12.87] (unknown [10.37.12.87]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 54B5E3F52E; Tue, 2 Jun 2020 04:31:27 -0700 (PDT) Subject: Re: [PATCH v8 4/8] PM / EM: add support for other devices than CPUs in Energy Model To: Daniel Lezcano , linux-kernel@vger.kernel.org, linux-pm@vger.kernel.org, linux-arm-kernel@lists.infradead.org, dri-devel@lists.freedesktop.org, linux-omap@vger.kernel.org, linux-mediatek@lists.infradead.org, linux-arm-msm@vger.kernel.org, linux-imx@nxp.com Cc: Dietmar.Eggemann@arm.com, cw00.choi@samsung.com, b.zolnierkie@samsung.com, rjw@rjwysocki.net, sudeep.holla@arm.com, viresh.kumar@linaro.org, nm@ti.com, sboyd@kernel.org, rui.zhang@intel.com, amit.kucheria@verdurent.com, mingo@redhat.com, peterz@infradead.org, juri.lelli@redhat.com, vincent.guittot@linaro.org, rostedt@goodmis.org, qperret@google.com, bsegall@google.com, mgorman@suse.de, shawnguo@kernel.org, s.hauer@pengutronix.de, festevam@gmail.com, kernel@pengutronix.de, khilman@kernel.org, agross@kernel.org, bjorn.andersson@linaro.org, robh@kernel.org, matthias.bgg@gmail.com, steven.price@arm.com, tomeu.vizoso@collabora.com, alyssa.rosenzweig@collabora.com, airlied@linux.ie, daniel@ffwll.ch, liviu.dudau@arm.com, lorenzo.pieralisi@arm.com, patrick.bellasi@matbug.net, orjan.eide@arm.com, rdunlap@infradead.org, mka@chromium.org References: <20200527095854.21714-1-lukasz.luba@arm.com> <20200527095854.21714-5-lukasz.luba@arm.com> From: Lukasz Luba Message-ID: <7201e161-6952-6e28-4036-bd0f0353ec30@arm.com> Date: Tue, 2 Jun 2020 12:31:25 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.9.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-arm-msm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org Hi Daniel, On 6/1/20 10:44 PM, Daniel Lezcano wrote: > On 27/05/2020 11:58, Lukasz Luba wrote: >> Add support for other devices than CPUs. The registration function >> does not require a valid cpumask pointer and is ready to handle new >> devices. Some of the internal structures has been reorganized in order to >> keep consistent view (like removing per_cpu pd pointers). >> >> Signed-off-by: Lukasz Luba >> --- > > [ ... ] > >> } >> EXPORT_SYMBOL_GPL(em_register_perf_domain); >> + >> +/** >> + * em_dev_unregister_perf_domain() - Unregister Energy Model (EM) for a device >> + * @dev : Device for which the EM is registered >> + * >> + * Try to unregister the EM for the specified device (but not a CPU). >> + */ >> +void em_dev_unregister_perf_domain(struct device *dev) >> +{ >> + if (IS_ERR_OR_NULL(dev) || !dev->em_pd) >> + return; >> + >> + if (_is_cpu_device(dev)) >> + return; >> + >> + mutex_lock(&em_pd_mutex); > > Is the mutex really needed? I just wanted to align this unregister code with register. Since there is debugfs dir lookup and the device's EM existence checks I thought it wouldn't harm just to lock for a while and make sure the registration path is not used. These two paths shouldn't affect each other, but with modules loading/unloading I wanted to play safe. I can change it maybe to just dmb() and the end of the function if it's a big performance problem in this unloading path. What do you think? > > If this function is called that means there is no more user of the > em_pd, no? True, that EM users should already be unregistered i.e. thermal cooling. > >> + em_debug_remove_pd(dev); >> + >> + kfree(dev->em_pd->table); >> + kfree(dev->em_pd); >> + dev->em_pd = NULL; >> + mutex_unlock(&em_pd_mutex); >> +} >> +EXPORT_SYMBOL_GPL(em_dev_unregister_perf_domain); >> > > Thank you for reviewing this. Regards, Lukasz 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=-5.3 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,USER_AGENT_SANE_1 autolearn=unavailable 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 4E1DDC433E1 for ; Tue, 2 Jun 2020 11:31:57 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 1E3D3207ED for ; Tue, 2 Jun 2020 11:31:57 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="fhxMdY4w" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 1E3D3207ED Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=arm.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-mediatek-bounces+linux-mediatek=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender:Content-Type: Content-Transfer-Encoding:Cc:List-Subscribe:List-Help:List-Post:List-Archive: List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:Date:Message-ID:From: References:To:Subject:Reply-To:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=M0nWTuCyM8vHgr5EfkjFrdTVcDYMt2c+T6GJthanE6E=; b=fhxMdY4wIu4hEOVFMqExyfHld ZuN7Hnq8wBpu0wLADBVzdV0A2AdsOqqIpC9rmYq55wwl7/RAaUVkofgepAwHIggCsQP70/s8lBCO2 b4fIrha5gL4vjX03ovczKh2xuRnUhfzFyet6Es+VSB2zVYhgpOby9cbPbsB+m9HpTXT2KivM6EKGt 11rZcS7P4TiUkDjV9Ia8j+T6JWtb8P3dx/PV+kJHzEeRw7yaiQXoEPHqsAdWrBeO1dMB0od1gx0Fw 8jUO7/qgU9W921Q55I4qIxHwF7OBv1m+8isH1LuJgFOtQYLXxvVT9Et4Q8eTzrY7sfpwbN+4y8O2H yI1beAocA==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1jg592-0001Gf-5X; Tue, 02 Jun 2020 11:31:48 +0000 Received: from foss.arm.com ([217.140.110.172]) by bombadil.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1jg58v-00019z-Op; Tue, 02 Jun 2020 11:31:43 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id B08A931B; Tue, 2 Jun 2020 04:31:37 -0700 (PDT) Received: from [10.37.12.87] (unknown [10.37.12.87]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 54B5E3F52E; Tue, 2 Jun 2020 04:31:27 -0700 (PDT) Subject: Re: [PATCH v8 4/8] PM / EM: add support for other devices than CPUs in Energy Model To: Daniel Lezcano , linux-kernel@vger.kernel.org, linux-pm@vger.kernel.org, linux-arm-kernel@lists.infradead.org, dri-devel@lists.freedesktop.org, linux-omap@vger.kernel.org, linux-mediatek@lists.infradead.org, linux-arm-msm@vger.kernel.org, linux-imx@nxp.com References: <20200527095854.21714-1-lukasz.luba@arm.com> <20200527095854.21714-5-lukasz.luba@arm.com> From: Lukasz Luba Message-ID: <7201e161-6952-6e28-4036-bd0f0353ec30@arm.com> Date: Tue, 2 Jun 2020 12:31:25 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.9.0 MIME-Version: 1.0 In-Reply-To: Content-Language: en-US X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20200602_043141_892605_808441E9 X-CRM114-Status: GOOD ( 18.53 ) X-BeenThere: linux-mediatek@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: nm@ti.com, juri.lelli@redhat.com, peterz@infradead.org, viresh.kumar@linaro.org, liviu.dudau@arm.com, bjorn.andersson@linaro.org, bsegall@google.com, festevam@gmail.com, mka@chromium.org, robh@kernel.org, amit.kucheria@verdurent.com, lorenzo.pieralisi@arm.com, vincent.guittot@linaro.org, khilman@kernel.org, steven.price@arm.com, cw00.choi@samsung.com, mingo@redhat.com, mgorman@suse.de, rui.zhang@intel.com, alyssa.rosenzweig@collabora.com, orjan.eide@arm.com, daniel@ffwll.ch, b.zolnierkie@samsung.com, s.hauer@pengutronix.de, rostedt@goodmis.org, matthias.bgg@gmail.com, Dietmar.Eggemann@arm.com, airlied@linux.ie, tomeu.vizoso@collabora.com, qperret@google.com, sboyd@kernel.org, rdunlap@infradead.org, rjw@rjwysocki.net, agross@kernel.org, kernel@pengutronix.de, sudeep.holla@arm.com, patrick.bellasi@matbug.net, shawnguo@kernel.org Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii"; Format="flowed" Sender: "Linux-mediatek" Errors-To: linux-mediatek-bounces+linux-mediatek=archiver.kernel.org@lists.infradead.org Hi Daniel, On 6/1/20 10:44 PM, Daniel Lezcano wrote: > On 27/05/2020 11:58, Lukasz Luba wrote: >> Add support for other devices than CPUs. The registration function >> does not require a valid cpumask pointer and is ready to handle new >> devices. Some of the internal structures has been reorganized in order to >> keep consistent view (like removing per_cpu pd pointers). >> >> Signed-off-by: Lukasz Luba >> --- > > [ ... ] > >> } >> EXPORT_SYMBOL_GPL(em_register_perf_domain); >> + >> +/** >> + * em_dev_unregister_perf_domain() - Unregister Energy Model (EM) for a device >> + * @dev : Device for which the EM is registered >> + * >> + * Try to unregister the EM for the specified device (but not a CPU). >> + */ >> +void em_dev_unregister_perf_domain(struct device *dev) >> +{ >> + if (IS_ERR_OR_NULL(dev) || !dev->em_pd) >> + return; >> + >> + if (_is_cpu_device(dev)) >> + return; >> + >> + mutex_lock(&em_pd_mutex); > > Is the mutex really needed? I just wanted to align this unregister code with register. Since there is debugfs dir lookup and the device's EM existence checks I thought it wouldn't harm just to lock for a while and make sure the registration path is not used. These two paths shouldn't affect each other, but with modules loading/unloading I wanted to play safe. I can change it maybe to just dmb() and the end of the function if it's a big performance problem in this unloading path. What do you think? > > If this function is called that means there is no more user of the > em_pd, no? True, that EM users should already be unregistered i.e. thermal cooling. > >> + em_debug_remove_pd(dev); >> + >> + kfree(dev->em_pd->table); >> + kfree(dev->em_pd); >> + dev->em_pd = NULL; >> + mutex_unlock(&em_pd_mutex); >> +} >> +EXPORT_SYMBOL_GPL(em_dev_unregister_perf_domain); >> > > Thank you for reviewing this. Regards, Lukasz _______________________________________________ Linux-mediatek mailing list Linux-mediatek@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-mediatek 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=-5.3 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,USER_AGENT_SANE_1 autolearn=ham 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 CD897C433E2 for ; Tue, 2 Jun 2020 11:31:44 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id A4A502074B for ; Tue, 2 Jun 2020 11:31:44 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="X6f2Hy9L" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org A4A502074B Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=arm.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender:Content-Type: Content-Transfer-Encoding:Cc:List-Subscribe:List-Help:List-Post:List-Archive: List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:Date:Message-ID:From: References:To:Subject:Reply-To:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=A+W/F+N5HjJshbH2sLipCsbjEsSlhJJqUJ28nexAvqs=; b=X6f2Hy9Lt87kXwdOsEJ9c0XC9 EnpEsqxPcvnyolb9cZZKbWwxP4UymdT/pxrdvQ1bDsgcpHW78Urc/2HeFqcRxOKEL4ZElCp8gumxF C9hzFTz0H0PUZ3Px8Jl6KZlEnTP+IBZLH8RKfBYOOLKhtojGgLaLLzKnS0ikCbDTRrACu06KtCrxy 3JI+g5dWTkMnyujW8tWKWjV/jXi+BZ8BheMEQZr6HG8wKulxIVQc7btkHO6DGDpPxvDIq2ZJrRgSm +vTxKEYv/iflHmewD8E28o0+40HBA6ZXqQiDtwkq1Q7kFQ03qpaEzXNhXep/XI8XMo/6xdB+YWZoO 1REWVdc9w==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1jg58y-0001Ap-3x; Tue, 02 Jun 2020 11:31:44 +0000 Received: from foss.arm.com ([217.140.110.172]) by bombadil.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1jg58v-00019z-Op; Tue, 02 Jun 2020 11:31:43 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id B08A931B; Tue, 2 Jun 2020 04:31:37 -0700 (PDT) Received: from [10.37.12.87] (unknown [10.37.12.87]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 54B5E3F52E; Tue, 2 Jun 2020 04:31:27 -0700 (PDT) Subject: Re: [PATCH v8 4/8] PM / EM: add support for other devices than CPUs in Energy Model To: Daniel Lezcano , linux-kernel@vger.kernel.org, linux-pm@vger.kernel.org, linux-arm-kernel@lists.infradead.org, dri-devel@lists.freedesktop.org, linux-omap@vger.kernel.org, linux-mediatek@lists.infradead.org, linux-arm-msm@vger.kernel.org, linux-imx@nxp.com References: <20200527095854.21714-1-lukasz.luba@arm.com> <20200527095854.21714-5-lukasz.luba@arm.com> From: Lukasz Luba Message-ID: <7201e161-6952-6e28-4036-bd0f0353ec30@arm.com> Date: Tue, 2 Jun 2020 12:31:25 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.9.0 MIME-Version: 1.0 In-Reply-To: Content-Language: en-US X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20200602_043141_892605_808441E9 X-CRM114-Status: GOOD ( 18.53 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: nm@ti.com, juri.lelli@redhat.com, peterz@infradead.org, viresh.kumar@linaro.org, liviu.dudau@arm.com, bjorn.andersson@linaro.org, bsegall@google.com, festevam@gmail.com, mka@chromium.org, robh@kernel.org, amit.kucheria@verdurent.com, lorenzo.pieralisi@arm.com, khilman@kernel.org, steven.price@arm.com, cw00.choi@samsung.com, mingo@redhat.com, mgorman@suse.de, rui.zhang@intel.com, alyssa.rosenzweig@collabora.com, orjan.eide@arm.com, daniel@ffwll.ch, b.zolnierkie@samsung.com, s.hauer@pengutronix.de, rostedt@goodmis.org, matthias.bgg@gmail.com, Dietmar.Eggemann@arm.com, airlied@linux.ie, tomeu.vizoso@collabora.com, qperret@google.com, sboyd@kernel.org, rdunlap@infradead.org, rjw@rjwysocki.net, agross@kernel.org, kernel@pengutronix.de, sudeep.holla@arm.com, patrick.bellasi@matbug.net, shawnguo@kernel.org Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii"; Format="flowed" Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org Hi Daniel, On 6/1/20 10:44 PM, Daniel Lezcano wrote: > On 27/05/2020 11:58, Lukasz Luba wrote: >> Add support for other devices than CPUs. The registration function >> does not require a valid cpumask pointer and is ready to handle new >> devices. Some of the internal structures has been reorganized in order to >> keep consistent view (like removing per_cpu pd pointers). >> >> Signed-off-by: Lukasz Luba >> --- > > [ ... ] > >> } >> EXPORT_SYMBOL_GPL(em_register_perf_domain); >> + >> +/** >> + * em_dev_unregister_perf_domain() - Unregister Energy Model (EM) for a device >> + * @dev : Device for which the EM is registered >> + * >> + * Try to unregister the EM for the specified device (but not a CPU). >> + */ >> +void em_dev_unregister_perf_domain(struct device *dev) >> +{ >> + if (IS_ERR_OR_NULL(dev) || !dev->em_pd) >> + return; >> + >> + if (_is_cpu_device(dev)) >> + return; >> + >> + mutex_lock(&em_pd_mutex); > > Is the mutex really needed? I just wanted to align this unregister code with register. Since there is debugfs dir lookup and the device's EM existence checks I thought it wouldn't harm just to lock for a while and make sure the registration path is not used. These two paths shouldn't affect each other, but with modules loading/unloading I wanted to play safe. I can change it maybe to just dmb() and the end of the function if it's a big performance problem in this unloading path. What do you think? > > If this function is called that means there is no more user of the > em_pd, no? True, that EM users should already be unregistered i.e. thermal cooling. > >> + em_debug_remove_pd(dev); >> + >> + kfree(dev->em_pd->table); >> + kfree(dev->em_pd); >> + dev->em_pd = NULL; >> + mutex_unlock(&em_pd_mutex); >> +} >> +EXPORT_SYMBOL_GPL(em_dev_unregister_perf_domain); >> > > Thank you for reviewing this. Regards, Lukasz _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel 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=-5.2 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED, USER_AGENT_SANE_1 autolearn=unavailable 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 903EBC433DF for ; Wed, 3 Jun 2020 07:04:39 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 54CBD20674 for ; Wed, 3 Jun 2020 07:04:39 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 54CBD20674 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=arm.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=dri-devel-bounces@lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id D94E66E05A; Wed, 3 Jun 2020 07:04:29 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by gabe.freedesktop.org (Postfix) with ESMTP id C399F6E169 for ; Tue, 2 Jun 2020 11:31:38 +0000 (UTC) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id B08A931B; Tue, 2 Jun 2020 04:31:37 -0700 (PDT) Received: from [10.37.12.87] (unknown [10.37.12.87]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 54B5E3F52E; Tue, 2 Jun 2020 04:31:27 -0700 (PDT) Subject: Re: [PATCH v8 4/8] PM / EM: add support for other devices than CPUs in Energy Model To: Daniel Lezcano , linux-kernel@vger.kernel.org, linux-pm@vger.kernel.org, linux-arm-kernel@lists.infradead.org, dri-devel@lists.freedesktop.org, linux-omap@vger.kernel.org, linux-mediatek@lists.infradead.org, linux-arm-msm@vger.kernel.org, linux-imx@nxp.com References: <20200527095854.21714-1-lukasz.luba@arm.com> <20200527095854.21714-5-lukasz.luba@arm.com> From: Lukasz Luba Message-ID: <7201e161-6952-6e28-4036-bd0f0353ec30@arm.com> Date: Tue, 2 Jun 2020 12:31:25 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.9.0 MIME-Version: 1.0 In-Reply-To: Content-Language: en-US X-Mailman-Approved-At: Wed, 03 Jun 2020 07:04:29 +0000 X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: nm@ti.com, juri.lelli@redhat.com, peterz@infradead.org, viresh.kumar@linaro.org, liviu.dudau@arm.com, bjorn.andersson@linaro.org, bsegall@google.com, mka@chromium.org, amit.kucheria@verdurent.com, lorenzo.pieralisi@arm.com, vincent.guittot@linaro.org, khilman@kernel.org, steven.price@arm.com, cw00.choi@samsung.com, mingo@redhat.com, mgorman@suse.de, rui.zhang@intel.com, alyssa.rosenzweig@collabora.com, orjan.eide@arm.com, b.zolnierkie@samsung.com, s.hauer@pengutronix.de, rostedt@goodmis.org, matthias.bgg@gmail.com, Dietmar.Eggemann@arm.com, airlied@linux.ie, tomeu.vizoso@collabora.com, qperret@google.com, sboyd@kernel.org, rdunlap@infradead.org, rjw@rjwysocki.net, agross@kernel.org, kernel@pengutronix.de, sudeep.holla@arm.com, patrick.bellasi@matbug.net, shawnguo@kernel.org Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii"; Format="flowed" Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" Hi Daniel, On 6/1/20 10:44 PM, Daniel Lezcano wrote: > On 27/05/2020 11:58, Lukasz Luba wrote: >> Add support for other devices than CPUs. The registration function >> does not require a valid cpumask pointer and is ready to handle new >> devices. Some of the internal structures has been reorganized in order to >> keep consistent view (like removing per_cpu pd pointers). >> >> Signed-off-by: Lukasz Luba >> --- > > [ ... ] > >> } >> EXPORT_SYMBOL_GPL(em_register_perf_domain); >> + >> +/** >> + * em_dev_unregister_perf_domain() - Unregister Energy Model (EM) for a device >> + * @dev : Device for which the EM is registered >> + * >> + * Try to unregister the EM for the specified device (but not a CPU). >> + */ >> +void em_dev_unregister_perf_domain(struct device *dev) >> +{ >> + if (IS_ERR_OR_NULL(dev) || !dev->em_pd) >> + return; >> + >> + if (_is_cpu_device(dev)) >> + return; >> + >> + mutex_lock(&em_pd_mutex); > > Is the mutex really needed? I just wanted to align this unregister code with register. Since there is debugfs dir lookup and the device's EM existence checks I thought it wouldn't harm just to lock for a while and make sure the registration path is not used. These two paths shouldn't affect each other, but with modules loading/unloading I wanted to play safe. I can change it maybe to just dmb() and the end of the function if it's a big performance problem in this unloading path. What do you think? > > If this function is called that means there is no more user of the > em_pd, no? True, that EM users should already be unregistered i.e. thermal cooling. > >> + em_debug_remove_pd(dev); >> + >> + kfree(dev->em_pd->table); >> + kfree(dev->em_pd); >> + dev->em_pd = NULL; >> + mutex_unlock(&em_pd_mutex); >> +} >> +EXPORT_SYMBOL_GPL(em_dev_unregister_perf_domain); >> > > Thank you for reviewing this. Regards, Lukasz _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dri-devel