Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751684AbcCCFyU (ORCPT ); Thu, 3 Mar 2016 00:54:20 -0500 Received: from mail-pf0-f182.google.com ([209.85.192.182]:35562 "EHLO mail-pf0-f182.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751135AbcCCFyR (ORCPT ); Thu, 3 Mar 2016 00:54:17 -0500 Date: Thu, 3 Mar 2016 11:23:59 +0530 From: Viresh Kumar To: "Rafael J. Wysocki" Cc: Linux PM list , Juri Lelli , Steve Muckle , ACPI Devel Maling List , Linux Kernel Mailing List , Peter Zijlstra , Srinivas Pandruvada , Vincent Guittot , Michael Turquette Subject: Re: [PATCH 3/6] cpufreq: governor: New data type for management part of dbs_data Message-ID: <20160303055359.GI2891@vireshk-i7> References: <2495375.dFbdlAZmA6@vostro.rjw.lan> <3567040.O8oI5B24Ng@vostro.rjw.lan> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3567040.O8oI5B24Ng@vostro.rjw.lan> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1570 Lines: 39 On 02-03-16, 03:08, Rafael J. Wysocki wrote: > From: Rafael J. Wysocki > > In addition to fields representing governor tunables, struct dbs_data > contains some fields needed for the management of objects of that > type. As it turns out, that part of struct dbs_data may be shared > with (future) governors that won't use the common code used by > "ondemand" and "conservative", so move it to a separate struct type > and modify the code using struct dbs_data to follow. > > Signed-off-by: Rafael J. Wysocki > --- > drivers/cpufreq/cpufreq_conservative.c | 15 +++-- > drivers/cpufreq/cpufreq_governor.c | 90 ++++++++++++++++++++------------- > drivers/cpufreq/cpufreq_governor.h | 36 +++++++------ > drivers/cpufreq/cpufreq_ondemand.c | 19 ++++-- > 4 files changed, 97 insertions(+), 63 deletions(-) > > Index: linux-pm/drivers/cpufreq/cpufreq_governor.h > =================================================================== > --- linux-pm.orig/drivers/cpufreq/cpufreq_governor.h > +++ linux-pm/drivers/cpufreq/cpufreq_governor.h > @@ -41,6 +41,13 @@ > /* Ondemand Sampling types */ > enum {OD_NORMAL_SAMPLE, OD_SUB_SAMPLE}; > > +struct gov_tunables { > + struct kobject kobj; > + struct list_head policy_list; > + struct mutex update_lock; > + int usage_count; > +}; Everything else looks fine, but I don't think that you have named it properly. Every thing else present in struct dbs_data are tunables, but not this. And so gov_tunables doesn't suit at all here.. -- viresh