Hi all, Today's linux-next merge of the tip tree got a conflict in arch/sh/kernel/perf_event.c between commit 51c6c9bb34fcd112d4ab8b8f5c1d1b6a10a00e71 ("sh: perf: Set up perf_max_events") from the sh tree and commit a4eaf7f14675cb512d69f0c928055e73d0c6d252 ("perf: Rework the PMU methods") from the tip tree. I fixed it up (see below) and can carry the fix as necessary. -- Cheers, Stephen Rothwell sfr@xxxxxxxxxxxxxxxx diff --cc arch/sh/kernel/perf_event.c index ecef1fe,036f7a9..0000000 --- a/arch/sh/kernel/perf_event.c +++ b/arch/sh/kernel/perf_event.c @@@ -319,13 -365,13 +365,14 @@@ int __cpuinit register_sh_pmu(struct sh { if (sh_pmu) return -EBUSY; - sh_pmu = pmu; + sh_pmu = _pmu; - pr_info("Performance Events: %s support registered\n", pmu->name); + pr_info("Performance Events: %s support registered\n", _pmu->name); - WARN_ON(pmu->num_events > MAX_HWEVENTS); - perf_max_events = pmu->num_events; + WARN_ON(_pmu->num_events > MAX_HWEVENTS); ++ perf_max_events = _pmu->num_events; + perf_pmu_register(&pmu); perf_cpu_notifier(sh_pmu_notifier); return 0; } -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html