On Tue, 09 Apr 2013 09:00:37 -0700
Joe Perches <j...@perches.com> wrote:

> > +static int start_periodic_polling(void)
> > +{
> > +   if (polling_started)
> > +           goto out;
> > +   schedule_delayed_work(&rapl_polling_work, 0);
> > +   polling_started = true;  
> 
> Should polling_started be device specific (in struct rapl_data ?)
> instead of a single instance static?
hmmm, one of the future improvements is to add support for multi
package CPUs. I intend to use rapl_data for per package common data
across different domains but use a single polling thread to reduce
wakeups if we were to poll on multiple packages. So in that sense, I
want to keep the polling_started flag as a single instance within the
driver.

-- 
Thanks,

Jacob
--
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/

Reply via email to