From mboxrd@z Thu Jan 1 00:00:00 1970
From: bugzilla-daemon@bugzilla.kernel.org
Subject: [Bug 77201] CPU online hangs, works when powernow-k8 is UN-loaded
Date: Thu, 12 Jun 2014 15:29:42 +0000
Message-ID:
References:
Mime-Version: 1.0
Content-Transfer-Encoding: 7bit
Return-path:
In-Reply-To:
Sender: cpufreq-owner@vger.kernel.org
List-ID:
Content-Type: text/plain; charset="us-ascii"
To: cpufreq@vger.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=77201
--- Comment #64 from Viresh Kumar ---
(In reply to Viresh Kumar from comment #63)
> Let me try some more hacks :)
Okay, I can understand that its taking more time than it should have but its
probably more tricky that we actually thought..
Don't loose hope, we can still crack this :)
I have added one more commit now. Idea is to stop ongoing frequency transition
at any point of time we want.
By default everything will work as it was working. So, continue upto the last
step, where you crashed, 1.8G ..
Before changing last freq do this:
echo 1 > /sys/kernel/debug/stop_transition
Follow this in code:
+ /* HACK THIS */
+ if (stop_transition)
+ return 0;
So, we will return from whichever part of powernowk8_target_fn() we want.
I have placed it at some point now, you can drag it in whichever direction you
want.
If it works, then drag it later into the code.
--
You are receiving this mail because:
You are the assignee for the bug.