Re: [V3][PATCH 4/7] perf, x86: Implement IBS interrupt handler

From: Andi Kleen
Date: Thu Sep 22 2011 - 17:51:46 EST


Robert Richter <robert.richter@xxxxxxx> writes:
>
> +static int perf_ibs_handle_irq(struct perf_ibs *perf_ibs, struct pt_regs *iregs)
> +{
> + struct perf_event *event = NULL;
> + struct hw_perf_event *hwc = &event->hw;
> + struct perf_sample_data data;
> + struct perf_raw_record raw;
> + struct pt_regs regs;
> + struct perf_ibs_data ibs_data;
> + int offset, size;
> + unsigned int msr;
> + u64 *buf;
> +
> + msr = hwc->config_base;
> + buf = ibs_data.regs;
> + rdmsrl(msr, *buf);
> + if (!(*buf++ & perf_ibs->valid_mask))
> + return 0;

No check if the NMI is really caused by IBS? Very nasty.
This will not interoperate well with other NMIs.

-Andi

--
ak@xxxxxxxxxxxxxxx -- Speaking for myself only
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/