Messages in this thread |  | | | Subject | Re: [perfmon2] [PATCH] perf_events: AMD event scheduling (v3) | | From | Peter Zijlstra <> | | Date | Wed, 10 Feb 2010 17:17:17 +0100 |
| |
On Wed, 2010-02-10 at 17:07 +0100, Stephane Eranian wrote: > > static inline int amd_is_nb_event(struct hw_perf_event *hwc) > { > return (hwc->config >> 5) & 0x7 == 0x7; > }
return (hwc->config & 0xe0) == 0xe0;
Changed it, thanks guys!
|  |