Hi all, Today's linux-next merge of the tip tree got a conflict in arch/sparc/kernel/perf_event.c between commit b343ae51c116dffaef07a8596661774c12212b66 ("sparc64: Support RAW perf events") from Linus' tree and commit b0a873ebbf87bf38bf70b5e39a7cadc96099fa13 ("perf: Register PMU implementations") from the tip tree. I fixed it up (I think - see below) and can carry the fix for a while. -- Cheers, Stephen Rothwell sfr@xxxxxxxxxxxxxxxx diff --cc arch/sparc/kernel/perf_event.c index 6318e62,f9a7067..0000000 --- a/arch/sparc/kernel/perf_event.c +++ b/arch/sparc/kernel/perf_event.c @@@ -1038,8 -1062,8 +1062,9 @@@ static int sparc_pmu_event_init(struct if (atomic_read(&nmi_active) < 0) return -ENODEV; + pmap = NULL; - if (attr->type == PERF_TYPE_HARDWARE) { + switch (attr->type) { + case PERF_TYPE_HARDWARE: if (attr->config >= sparc_pmu->max_events) return -EINVAL; pmap = sparc_pmu->event_map(attr->config); @@@ -1047,18 -1073,16 +1074,25 @@@ pmap = sparc_map_cache_event(attr->config); if (IS_ERR(pmap)) return PTR_ERR(pmap); - } else if (attr->type != PERF_TYPE_RAW) - return -EOPNOTSUPP; + break; + + case PERF_TYPE_RAW: - return -EOPNOTSUPP; ++ break; + + default: + return -ENOENT; + + } + if (pmap) { + hwc->event_base = perf_event_encode(pmap); + } else { + /* User gives us "(encoding << 16) | pic_mask" for + * PERF_TYPE_RAW events. + */ + hwc->event_base = attr->config; + } + /* We save the enable bits in the config_base. */ hwc->config_base = sparc_pmu->irq_bit; if (!attr->exclude_user) -- 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