From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756333Ab2HGWQL (ORCPT ); Tue, 7 Aug 2012 18:16:11 -0400 Received: from ogre.sisk.pl ([193.178.161.156]:47120 "EHLO ogre.sisk.pl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751761Ab2HGWQJ (ORCPT ); Tue, 7 Aug 2012 18:16:09 -0400 From: "Rafael J. Wysocki" To: Amit Daniel Kachhap Subject: Re: [RESEND PATCH] [CPUFREQ] conservative: Initialise the cpu field during governor start Date: Wed, 8 Aug 2012 00:22:03 +0200 User-Agent: KMail/1.13.6 (Linux/3.5.0+; KDE/4.6.0; x86_64; ; ) Cc: cpufreq@vger.kernel.org, amit.kachhap@linaro.org, linux-kernel@vger.kernel.org, linux-pm@lists.linux-foundation.org References: <201207232055.26506.rjw@sisk.pl> <1343121972-9130-1-git-send-email-amit.daniel@samsung.com> In-Reply-To: <1343121972-9130-1-git-send-email-amit.daniel@samsung.com> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-2" Content-Transfer-Encoding: 7bit Message-Id: <201208080022.03731.rjw@sisk.pl> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tuesday, July 24, 2012, Amit Daniel Kachhap wrote: > This change initialises the cpu id field of cs_cpu_dbs_info structure in > conservative governor and keep this consistent with other governors. > Similar initialisation is present in ondemand governor. > > Signed-off-by: Amit Daniel Kachhap Applied to the linux-next branch of the linux-pm.git tree as v3.7 material. Thanks, Rafael > --- > drivers/cpufreq/cpufreq_conservative.c | 1 + > 1 files changed, 1 insertions(+), 0 deletions(-) > > diff --git a/drivers/cpufreq/cpufreq_conservative.c b/drivers/cpufreq/cpufreq_conservative.c > index 235a340..a1563d7 100644 > --- a/drivers/cpufreq/cpufreq_conservative.c > +++ b/drivers/cpufreq/cpufreq_conservative.c > @@ -504,6 +504,7 @@ static int cpufreq_governor_dbs(struct cpufreq_policy *policy, > j_dbs_info->prev_cpu_nice = > kcpustat_cpu(j).cpustat[CPUTIME_NICE]; > } > + this_dbs_info->cpu = cpu; > this_dbs_info->down_skip = 0; > this_dbs_info->requested_freq = policy->cur; > >