On Mon, Aug 10, 2015 at 01:19:36PM +0200, Jiri Olsa wrote:
> On Tue, Aug 04, 2015 at 02:01:20AM -0700, tip-bot for Andy Lutomirski wrote:
> 
> SNIP
> 
> > +   /* unsupported modes and filters */
> > +   if (event->attr.exclude_user   ||
> > +       event->attr.exclude_kernel ||
> > +       event->attr.exclude_hv     ||
> > +       event->attr.exclude_idle   ||
> > +       event->attr.exclude_host   ||
> > +       event->attr.exclude_guest  ||
> > +       event->attr.sample_period) /* no sampling */
> > +           return -EINVAL;
> > +
> > +   event->hw.idx = -1;
> > +   event->hw.event_base = msr[cfg].msr;
> > +   event->hw.config = cfg;
> > +
> > +   return 0;
> > +}
> > +
> > +static inline u64 msr_read_counter(struct perf_event *event)
> > +{
> > +   u64 now;
> > +
> > +   if (event->hw.event_base)
> > +           rdmsrl(event->hw.event_base, now);
> > +   else
> > +           now = rdtsc();
> 
> not sure itf there's newer version, but I needed attached change
> to make it compile on latest Arnaldo's tree

You need tip/x86/asm merged in.
--
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