linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Wang Weidong <wangweidong1@huawei.com>
To: rjw@rjwysocki.net, viresh.kumar@linaro.org
Cc: wangweidong1@huawei.com, linux-pm@vger.kernel.org,
	linux-kernel@vger.kernel.org, guohanjun@huawei.com
Subject: [PATCH 2/2] cpufreq: show the real avail freqs with the freq_table
Date: Fri, 28 Nov 2014 10:43:39 +0800	[thread overview]
Message-ID: <1417142619-14548-3-git-send-email-wangweidong1@huawei.com> (raw)
In-Reply-To: <1417142619-14548-1-git-send-email-wangweidong1@huawei.com>

Some time, the policy's max_freq and min_freq will change, so
the avail freqs is not from the cpuinfo_min to cpuinfo_max.
Just add the check for the freq_table.

Signed-off-by: Wang Weidong <wangweidong1@huawei.com>
---
 drivers/cpufreq/freq_table.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/cpufreq/freq_table.c b/drivers/cpufreq/freq_table.c
index df14766..4f86010 100644
--- a/drivers/cpufreq/freq_table.c
+++ b/drivers/cpufreq/freq_table.c
@@ -237,7 +237,9 @@ static ssize_t show_available_freqs(struct cpufreq_policy *policy, char *buf,
 		 * show_boost = false and driver_data != BOOST freq
 		 * display NON BOOST freqs
 		 */
-		if (show_boost ^ (pos->flags & CPUFREQ_BOOST_FREQ))
+		if (pos->frequency < policy->min ||
+		    pos->frequency > policy->max ||
+		    show_boost ^ (pos->flags & CPUFREQ_BOOST_FREQ))
 			continue;
 
 		count += sprintf(&buf[count], "%d ", pos->frequency);
-- 
1.7.12

  parent reply	other threads:[~2014-11-28  2:43 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-11-28  2:43 [PATCH 0/2] fix some problems for cpufreq Wang Weidong
2014-11-28  2:43 ` [PATCH 1/2] acpi-cpufreq: make the freq_table store the same freq value Wang Weidong
2014-11-28  2:43 ` Wang Weidong [this message]
2014-11-29  1:26 ` [PATCH 0/2] fix some problems for cpufreq Rafael J. Wysocki
2014-11-29  1:40   ` Wang Weidong
2014-11-29 22:30     ` Rafael J. Wysocki
2014-11-30  8:23       ` Wang Weidong
2014-12-02  4:38         ` Viresh Kumar
2014-12-03  5:49           ` Wang Weidong
2014-11-30 10:17 ` [PATCH v2] acpi-cpufreq: make the freq_table store the same freq value Wang Weidong
2014-12-27  1:33   ` [PATCH RESEND " Wang Weidong

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1417142619-14548-3-git-send-email-wangweidong1@huawei.com \
    --to=wangweidong1@huawei.com \
    --cc=guohanjun@huawei.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=rjw@rjwysocki.net \
    --cc=viresh.kumar@linaro.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).