Hi Steve, On Tue, Dec 08, 2015 at 10:19:24PM -0800, Steve Muckle wrote:
[...] > +static int cpufreq_sched_thread(void *data) > +{ > + struct sched_param param; > + struct cpufreq_policy *policy; > + struct gov_data *gd; > + unsigned int new_request = 0; > + unsigned int last_request = 0; > + int ret; > + > + policy = (struct cpufreq_policy *) data; > + gd = policy->governor_data; > + > + param.sched_priority = 50; > + ret = sched_setscheduler_nocheck(gd->task, SCHED_FIFO, ¶m); > + if (ret) { > + pr_warn("%s: failed to set SCHED_FIFO\n", __func__); > + do_exit(-EINVAL); > + } else { > + pr_debug("%s: kthread (%d) set to SCHED_FIFO\n", > + __func__, gd->task->pid); > + } > + > + do { > + set_current_state(TASK_INTERRUPTIBLE); > + new_request = gd->requested_freq; > + if (new_request == last_request) { > + schedule(); > + } else { > + /* > + * if the frequency thread sleeps while waiting to be > + * unthrottled, start over to check for a newer request > + */ > + if (finish_last_request(gd)) > + continue; > + last_request = new_request; > + cpufreq_sched_try_driver_target(policy, new_request); > + } I also think "set_current_state(TASK_INTERRUPTIBLE)" will introduce logic error when software flow run into "else" block. The reason is after you set state with TASK_INTERRUPTIBLE, if there have some scheduling happen within cpufreq_sched_try_driver_target(), then the thread will be remove from rq. But generally we suppose the thread will be on rq and can continue run after next tick. Juri's suggestion can fix this issue. And we can use atomic_t to safely accessing gd->requested_freq. [...] Thanks, Leo Yan -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/