2017-11-24 23:00:32 +09:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2012-03-23 19:13:06 +09:00
|
|
|
/*
|
|
|
|
* Performance event support for s390x - CPU-measurement Counter Facility
|
|
|
|
*
|
2017-02-13 20:32:17 +09:00
|
|
|
* Copyright IBM Corp. 2012, 2017
|
2012-03-23 19:13:06 +09:00
|
|
|
* Author(s): Hendrik Brueckner <brueckner@linux.vnet.ibm.com>
|
|
|
|
*/
|
|
|
|
#define KMSG_COMPONENT "cpum_cf"
|
|
|
|
#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/kernel_stat.h>
|
|
|
|
#include <linux/percpu.h>
|
|
|
|
#include <linux/notifier.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/export.h>
|
2012-03-30 16:40:55 +09:00
|
|
|
#include <asm/ctl_reg.h>
|
2012-03-23 19:13:06 +09:00
|
|
|
#include <asm/irq.h>
|
2018-08-06 22:56:43 +09:00
|
|
|
#include <asm/cpu_mcf.h>
|
2012-03-23 19:13:06 +09:00
|
|
|
|
2018-08-08 17:12:22 +09:00
|
|
|
/* Per-CPU event structure for the counter facility */
|
|
|
|
DEFINE_PER_CPU(struct cpu_cf_events, cpu_cf_events) = {
|
2012-03-23 19:13:06 +09:00
|
|
|
.ctr_set = {
|
2016-06-03 23:55:03 +09:00
|
|
|
[CPUMF_CTR_SET_BASIC] = ATOMIC_INIT(0),
|
|
|
|
[CPUMF_CTR_SET_USER] = ATOMIC_INIT(0),
|
|
|
|
[CPUMF_CTR_SET_CRYPTO] = ATOMIC_INIT(0),
|
|
|
|
[CPUMF_CTR_SET_EXT] = ATOMIC_INIT(0),
|
|
|
|
[CPUMF_CTR_SET_MT_DIAG] = ATOMIC_INIT(0),
|
2012-03-23 19:13:06 +09:00
|
|
|
},
|
2018-08-08 17:30:37 +09:00
|
|
|
.alert = ATOMIC64_INIT(0),
|
2012-03-23 19:13:06 +09:00
|
|
|
.state = 0,
|
|
|
|
.flags = 0,
|
2015-09-04 12:07:45 +09:00
|
|
|
.txn_flags = 0,
|
2012-03-23 19:13:06 +09:00
|
|
|
};
|
|
|
|
|
2018-10-25 23:58:15 +09:00
|
|
|
/* Indicator whether the CPU-Measurement Counter Facility Support is ready */
|
|
|
|
static bool cpum_cf_initalized;
|
|
|
|
|
2016-06-03 23:55:03 +09:00
|
|
|
static enum cpumf_ctr_set get_counter_set(u64 event)
|
2012-03-23 19:13:06 +09:00
|
|
|
{
|
2016-06-03 23:55:03 +09:00
|
|
|
int set = CPUMF_CTR_SET_MAX;
|
2012-03-23 19:13:06 +09:00
|
|
|
|
|
|
|
if (event < 32)
|
|
|
|
set = CPUMF_CTR_SET_BASIC;
|
|
|
|
else if (event < 64)
|
|
|
|
set = CPUMF_CTR_SET_USER;
|
|
|
|
else if (event < 128)
|
|
|
|
set = CPUMF_CTR_SET_CRYPTO;
|
2012-10-15 21:31:29 +09:00
|
|
|
else if (event < 256)
|
2012-03-23 19:13:06 +09:00
|
|
|
set = CPUMF_CTR_SET_EXT;
|
2016-06-03 23:55:03 +09:00
|
|
|
else if (event >= 448 && event < 496)
|
|
|
|
set = CPUMF_CTR_SET_MT_DIAG;
|
2012-03-23 19:13:06 +09:00
|
|
|
|
|
|
|
return set;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int validate_ctr_version(const struct hw_perf_event *hwc)
|
|
|
|
{
|
2018-08-08 17:04:23 +09:00
|
|
|
struct cpu_cf_events *cpuhw;
|
2012-03-23 19:13:06 +09:00
|
|
|
int err = 0;
|
2016-06-03 23:55:03 +09:00
|
|
|
u16 mtdiag_ctl;
|
2012-03-23 19:13:06 +09:00
|
|
|
|
2018-08-08 17:04:23 +09:00
|
|
|
cpuhw = &get_cpu_var(cpu_cf_events);
|
2012-03-23 19:13:06 +09:00
|
|
|
|
|
|
|
/* check required version for counter sets */
|
|
|
|
switch (hwc->config_base) {
|
|
|
|
case CPUMF_CTR_SET_BASIC:
|
|
|
|
case CPUMF_CTR_SET_USER:
|
|
|
|
if (cpuhw->info.cfvn < 1)
|
|
|
|
err = -EOPNOTSUPP;
|
|
|
|
break;
|
|
|
|
case CPUMF_CTR_SET_CRYPTO:
|
|
|
|
case CPUMF_CTR_SET_EXT:
|
|
|
|
if (cpuhw->info.csvn < 1)
|
|
|
|
err = -EOPNOTSUPP;
|
2012-10-15 21:31:29 +09:00
|
|
|
if ((cpuhw->info.csvn == 1 && hwc->config > 159) ||
|
|
|
|
(cpuhw->info.csvn == 2 && hwc->config > 175) ||
|
|
|
|
(cpuhw->info.csvn > 2 && hwc->config > 255))
|
|
|
|
err = -EOPNOTSUPP;
|
2012-03-23 19:13:06 +09:00
|
|
|
break;
|
2016-06-03 23:55:03 +09:00
|
|
|
case CPUMF_CTR_SET_MT_DIAG:
|
|
|
|
if (cpuhw->info.csvn <= 3)
|
|
|
|
err = -EOPNOTSUPP;
|
|
|
|
/*
|
|
|
|
* MT-diagnostic counters are read-only. The counter set
|
|
|
|
* is automatically enabled and activated on all CPUs with
|
|
|
|
* multithreading (SMT). Deactivation of multithreading
|
|
|
|
* also disables the counter set. State changes are ignored
|
|
|
|
* by lcctl(). Because Linux controls SMT enablement through
|
|
|
|
* a kernel parameter only, the counter set is either disabled
|
|
|
|
* or enabled and active.
|
|
|
|
*
|
|
|
|
* Thus, the counters can only be used if SMT is on and the
|
|
|
|
* counter set is enabled and active.
|
|
|
|
*/
|
2018-08-06 22:56:43 +09:00
|
|
|
mtdiag_ctl = cpumf_ctr_ctl[CPUMF_CTR_SET_MT_DIAG];
|
2016-06-03 23:55:03 +09:00
|
|
|
if (!((cpuhw->info.auth_ctl & mtdiag_ctl) &&
|
|
|
|
(cpuhw->info.enable_ctl & mtdiag_ctl) &&
|
|
|
|
(cpuhw->info.act_ctl & mtdiag_ctl)))
|
|
|
|
err = -EOPNOTSUPP;
|
|
|
|
break;
|
2012-03-23 19:13:06 +09:00
|
|
|
}
|
|
|
|
|
2018-08-08 17:04:23 +09:00
|
|
|
put_cpu_var(cpu_cf_events);
|
2012-03-23 19:13:06 +09:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int validate_ctr_auth(const struct hw_perf_event *hwc)
|
|
|
|
{
|
2018-08-08 17:04:23 +09:00
|
|
|
struct cpu_cf_events *cpuhw;
|
2012-03-23 19:13:06 +09:00
|
|
|
u64 ctrs_state;
|
|
|
|
int err = 0;
|
|
|
|
|
2018-08-08 17:04:23 +09:00
|
|
|
cpuhw = &get_cpu_var(cpu_cf_events);
|
2012-03-23 19:13:06 +09:00
|
|
|
|
2015-09-07 17:52:42 +09:00
|
|
|
/* Check authorization for cpu counter sets.
|
|
|
|
* If the particular CPU counter set is not authorized,
|
|
|
|
* return with -ENOENT in order to fall back to other
|
|
|
|
* PMUs that might suffice the event request.
|
|
|
|
*/
|
2018-08-06 22:56:43 +09:00
|
|
|
ctrs_state = cpumf_ctr_ctl[hwc->config_base];
|
2012-03-23 19:13:06 +09:00
|
|
|
if (!(ctrs_state & cpuhw->info.auth_ctl))
|
2015-09-07 17:52:42 +09:00
|
|
|
err = -ENOENT;
|
2012-03-23 19:13:06 +09:00
|
|
|
|
2018-08-08 17:04:23 +09:00
|
|
|
put_cpu_var(cpu_cf_events);
|
2012-03-23 19:13:06 +09:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Change the CPUMF state to active.
|
|
|
|
* Enable and activate the CPU-counter sets according
|
|
|
|
* to the per-cpu control state.
|
|
|
|
*/
|
|
|
|
static void cpumf_pmu_enable(struct pmu *pmu)
|
|
|
|
{
|
2018-08-08 17:04:23 +09:00
|
|
|
struct cpu_cf_events *cpuhw = this_cpu_ptr(&cpu_cf_events);
|
2012-03-23 19:13:06 +09:00
|
|
|
int err;
|
|
|
|
|
|
|
|
if (cpuhw->flags & PMU_F_ENABLED)
|
|
|
|
return;
|
|
|
|
|
|
|
|
err = lcctl(cpuhw->state);
|
|
|
|
if (err) {
|
|
|
|
pr_err("Enabling the performance measuring unit "
|
2012-04-11 21:28:10 +09:00
|
|
|
"failed with rc=%x\n", err);
|
2012-03-23 19:13:06 +09:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
cpuhw->flags |= PMU_F_ENABLED;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Change the CPUMF state to inactive.
|
|
|
|
* Disable and enable (inactive) the CPU-counter sets according
|
|
|
|
* to the per-cpu control state.
|
|
|
|
*/
|
|
|
|
static void cpumf_pmu_disable(struct pmu *pmu)
|
|
|
|
{
|
2018-08-08 17:04:23 +09:00
|
|
|
struct cpu_cf_events *cpuhw = this_cpu_ptr(&cpu_cf_events);
|
2012-03-23 19:13:06 +09:00
|
|
|
int err;
|
|
|
|
u64 inactive;
|
|
|
|
|
|
|
|
if (!(cpuhw->flags & PMU_F_ENABLED))
|
|
|
|
return;
|
|
|
|
|
|
|
|
inactive = cpuhw->state & ~((1 << CPUMF_LCCTL_ENABLE_SHIFT) - 1);
|
|
|
|
err = lcctl(inactive);
|
|
|
|
if (err) {
|
|
|
|
pr_err("Disabling the performance measuring unit "
|
2012-04-11 21:28:10 +09:00
|
|
|
"failed with rc=%x\n", err);
|
2012-03-23 19:13:06 +09:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
cpuhw->flags &= ~PMU_F_ENABLED;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Number of perf events counting hardware events */
|
|
|
|
static atomic_t num_events = ATOMIC_INIT(0);
|
|
|
|
/* Used to avoid races in calling reserve/release_cpumf_hardware */
|
|
|
|
static DEFINE_MUTEX(pmc_reserve_mutex);
|
|
|
|
|
|
|
|
/* CPU-measurement alerts for the counter facility */
|
|
|
|
static void cpumf_measurement_alert(struct ext_code ext_code,
|
|
|
|
unsigned int alert, unsigned long unused)
|
|
|
|
{
|
2018-08-08 17:04:23 +09:00
|
|
|
struct cpu_cf_events *cpuhw;
|
2012-03-23 19:13:06 +09:00
|
|
|
|
|
|
|
if (!(alert & CPU_MF_INT_CF_MASK))
|
|
|
|
return;
|
|
|
|
|
2013-01-02 23:18:18 +09:00
|
|
|
inc_irq_stat(IRQEXT_CMC);
|
2018-08-08 17:04:23 +09:00
|
|
|
cpuhw = this_cpu_ptr(&cpu_cf_events);
|
2012-03-23 19:13:06 +09:00
|
|
|
|
|
|
|
/* Measurement alerts are shared and might happen when the PMU
|
|
|
|
* is not reserved. Ignore these alerts in this case. */
|
|
|
|
if (!(cpuhw->flags & PMU_F_RESERVED))
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* counter authorization change alert */
|
|
|
|
if (alert & CPU_MF_INT_CF_CACA)
|
|
|
|
qctri(&cpuhw->info);
|
|
|
|
|
|
|
|
/* loss of counter data alert */
|
|
|
|
if (alert & CPU_MF_INT_CF_LCDA)
|
|
|
|
pr_err("CPU[%i] Counter data was lost\n", smp_processor_id());
|
2016-06-03 23:55:03 +09:00
|
|
|
|
|
|
|
/* loss of MT counter data alert */
|
|
|
|
if (alert & CPU_MF_INT_CF_MTDA)
|
|
|
|
pr_warn("CPU[%i] MT counter data was lost\n",
|
|
|
|
smp_processor_id());
|
2018-08-08 17:30:37 +09:00
|
|
|
|
|
|
|
/* store alert for special handling by in-kernel users */
|
|
|
|
atomic64_or(alert, &cpuhw->alert);
|
2012-03-23 19:13:06 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
#define PMC_INIT 0
|
|
|
|
#define PMC_RELEASE 1
|
|
|
|
static void setup_pmc_cpu(void *flags)
|
|
|
|
{
|
2018-08-08 17:04:23 +09:00
|
|
|
struct cpu_cf_events *cpuhw = this_cpu_ptr(&cpu_cf_events);
|
2012-03-23 19:13:06 +09:00
|
|
|
|
|
|
|
switch (*((int *) flags)) {
|
|
|
|
case PMC_INIT:
|
|
|
|
memset(&cpuhw->info, 0, sizeof(cpuhw->info));
|
|
|
|
qctri(&cpuhw->info);
|
|
|
|
cpuhw->flags |= PMU_F_RESERVED;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PMC_RELEASE:
|
|
|
|
cpuhw->flags &= ~PMU_F_RESERVED;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Disable CPU counter sets */
|
|
|
|
lcctl(0);
|
|
|
|
}
|
|
|
|
|
2018-10-25 23:58:15 +09:00
|
|
|
bool kernel_cpumcf_avail(void)
|
|
|
|
{
|
|
|
|
return cpum_cf_initalized;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(kernel_cpumcf_avail);
|
|
|
|
|
2018-08-07 00:43:07 +09:00
|
|
|
/* Reserve/release functions for sharing perf hardware */
|
|
|
|
static DEFINE_SPINLOCK(cpumcf_owner_lock);
|
|
|
|
static void *cpumcf_owner;
|
|
|
|
|
|
|
|
/* Initialize the CPU-measurement counter facility */
|
|
|
|
int __kernel_cpumcf_begin(void)
|
2012-03-23 19:13:06 +09:00
|
|
|
{
|
|
|
|
int flags = PMC_INIT;
|
2018-08-07 00:43:07 +09:00
|
|
|
int err = 0;
|
|
|
|
|
|
|
|
spin_lock(&cpumcf_owner_lock);
|
|
|
|
if (cpumcf_owner)
|
|
|
|
err = -EBUSY;
|
|
|
|
else
|
|
|
|
cpumcf_owner = __builtin_return_address(0);
|
|
|
|
spin_unlock(&cpumcf_owner_lock);
|
|
|
|
if (err)
|
|
|
|
return err;
|
2012-03-23 19:13:06 +09:00
|
|
|
|
|
|
|
on_each_cpu(setup_pmc_cpu, &flags, 1);
|
2013-09-04 20:35:45 +09:00
|
|
|
irq_subclass_register(IRQ_SUBCLASS_MEASUREMENT_ALERT);
|
2012-03-23 19:13:06 +09:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-08-07 00:43:07 +09:00
|
|
|
EXPORT_SYMBOL(__kernel_cpumcf_begin);
|
2012-03-23 19:13:06 +09:00
|
|
|
|
2018-08-08 17:30:37 +09:00
|
|
|
/* Obtain the CPU-measurement alerts for the counter facility */
|
|
|
|
unsigned long kernel_cpumcf_alert(int clear)
|
|
|
|
{
|
|
|
|
struct cpu_cf_events *cpuhw = this_cpu_ptr(&cpu_cf_events);
|
|
|
|
unsigned long alert;
|
|
|
|
|
|
|
|
alert = atomic64_read(&cpuhw->alert);
|
|
|
|
if (clear)
|
|
|
|
atomic64_set(&cpuhw->alert, 0);
|
|
|
|
|
|
|
|
return alert;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(kernel_cpumcf_alert);
|
|
|
|
|
2018-08-07 00:43:07 +09:00
|
|
|
/* Release the CPU-measurement counter facility */
|
|
|
|
void __kernel_cpumcf_end(void)
|
2012-03-23 19:13:06 +09:00
|
|
|
{
|
|
|
|
int flags = PMC_RELEASE;
|
|
|
|
|
|
|
|
on_each_cpu(setup_pmc_cpu, &flags, 1);
|
2013-09-04 20:35:45 +09:00
|
|
|
irq_subclass_unregister(IRQ_SUBCLASS_MEASUREMENT_ALERT);
|
2018-08-07 00:43:07 +09:00
|
|
|
|
|
|
|
spin_lock(&cpumcf_owner_lock);
|
|
|
|
cpumcf_owner = NULL;
|
|
|
|
spin_unlock(&cpumcf_owner_lock);
|
2012-03-23 19:13:06 +09:00
|
|
|
}
|
2018-08-07 00:43:07 +09:00
|
|
|
EXPORT_SYMBOL(__kernel_cpumcf_end);
|
2012-03-23 19:13:06 +09:00
|
|
|
|
|
|
|
/* Release the PMU if event is the last perf event */
|
|
|
|
static void hw_perf_event_destroy(struct perf_event *event)
|
|
|
|
{
|
|
|
|
if (!atomic_add_unless(&num_events, -1, 1)) {
|
|
|
|
mutex_lock(&pmc_reserve_mutex);
|
|
|
|
if (atomic_dec_return(&num_events) == 0)
|
2018-08-07 00:43:07 +09:00
|
|
|
__kernel_cpumcf_end();
|
2012-03-23 19:13:06 +09:00
|
|
|
mutex_unlock(&pmc_reserve_mutex);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* CPUMF <-> perf event mappings for kernel+userspace (basic set) */
|
|
|
|
static const int cpumf_generic_events_basic[] = {
|
|
|
|
[PERF_COUNT_HW_CPU_CYCLES] = 0,
|
|
|
|
[PERF_COUNT_HW_INSTRUCTIONS] = 1,
|
|
|
|
[PERF_COUNT_HW_CACHE_REFERENCES] = -1,
|
|
|
|
[PERF_COUNT_HW_CACHE_MISSES] = -1,
|
|
|
|
[PERF_COUNT_HW_BRANCH_INSTRUCTIONS] = -1,
|
|
|
|
[PERF_COUNT_HW_BRANCH_MISSES] = -1,
|
|
|
|
[PERF_COUNT_HW_BUS_CYCLES] = -1,
|
|
|
|
};
|
|
|
|
/* CPUMF <-> perf event mappings for userspace (problem-state set) */
|
|
|
|
static const int cpumf_generic_events_user[] = {
|
|
|
|
[PERF_COUNT_HW_CPU_CYCLES] = 32,
|
|
|
|
[PERF_COUNT_HW_INSTRUCTIONS] = 33,
|
|
|
|
[PERF_COUNT_HW_CACHE_REFERENCES] = -1,
|
|
|
|
[PERF_COUNT_HW_CACHE_MISSES] = -1,
|
|
|
|
[PERF_COUNT_HW_BRANCH_INSTRUCTIONS] = -1,
|
|
|
|
[PERF_COUNT_HW_BRANCH_MISSES] = -1,
|
|
|
|
[PERF_COUNT_HW_BUS_CYCLES] = -1,
|
|
|
|
};
|
|
|
|
|
|
|
|
static int __hw_perf_event_init(struct perf_event *event)
|
|
|
|
{
|
|
|
|
struct perf_event_attr *attr = &event->attr;
|
|
|
|
struct hw_perf_event *hwc = &event->hw;
|
2016-06-03 23:55:03 +09:00
|
|
|
enum cpumf_ctr_set set;
|
2012-03-23 19:13:06 +09:00
|
|
|
int err;
|
|
|
|
u64 ev;
|
|
|
|
|
|
|
|
switch (attr->type) {
|
|
|
|
case PERF_TYPE_RAW:
|
|
|
|
/* Raw events are used to access counters directly,
|
|
|
|
* hence do not permit excludes */
|
|
|
|
if (attr->exclude_kernel || attr->exclude_user ||
|
|
|
|
attr->exclude_hv)
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
ev = attr->config;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PERF_TYPE_HARDWARE:
|
s390/cpum_cf: Reject request for sampling in event initialization
On s390 command perf top fails
[root@s35lp76 perf] # ./perf top -F100000 --stdio
Error:
cycles: PMU Hardware doesn't support sampling/overflow-interrupts.
Try 'perf stat'
[root@s35lp76 perf] #
Using event -e rb0000 works as designed. Event rb0000 is the event
number of the sampling facility for basic sampling.
During system start up the following PMUs are installed in the kernel's
PMU list (from head to tail):
cpum_cf --> s390 PMU counter facility device driver
cpum_sf --> s390 PMU sampling facility device driver
uprobe
kprobe
tracepoint
task_clock
cpu_clock
Perf top executes following functions and calls perf_event_open(2) system
call with different parameters many times:
cmd_top
--> __cmd_top
--> perf_evlist__add_default
--> __perf_evlist__add_default
--> perf_evlist__new_cycles (creates event type:0 (HW)
config 0 (CPU_CYCLES)
--> perf_event_attr__set_max_precise_ip
Uses perf_event_open(2) to detect correct
precise_ip level. Fails 3 times on s390 which is ok.
Then functions cmd_top
--> __cmd_top
--> perf_top__start_counters
-->perf_evlist__config
--> perf_can_comm_exec
--> perf_probe_api
This functions test support for the following events:
"cycles:u", "instructions:u", "cpu-clock:u" using
--> perf_do_probe_api
--> perf_event_open_cloexec
Test the close on exec flag support with
perf_event_open(2).
perf_do_probe_api returns true if the event is
supported.
The function returns true because event cpu-clock is
supported by the PMU cpu_clock.
This is achieved by many calls to perf_event_open(2).
Function perf_top__start_counters now calls perf_evsel__open() for every
event, which is the default event cpu_cycles (config:0) and type HARDWARE
(type:0) which a predfined frequence of 4000.
Given the above order of the PMU list, the PMU cpum_cf gets called first
and returns 0, which indicates support for this sampling. The event is
fully allocated in the function perf_event_open (file kernel/event/core.c
near line 10521 and the following check fails:
event = perf_event_alloc(&attr, cpu, task, group_leader, NULL,
NULL, NULL, cgroup_fd);
if (IS_ERR(event)) {
err = PTR_ERR(event);
goto err_cred;
}
if (is_sampling_event(event)) {
if (event->pmu->capabilities & PERF_PMU_CAP_NO_INTERRUPT) {
err = -EOPNOTSUPP;
goto err_alloc;
}
}
The check for the interrupt capabilities fails and the system call
perf_event_open() returns -EOPNOTSUPP (-95).
Add a check to return -ENODEV when sampling is requested in PMU cpum_cf.
This allows common kernel code in the perf_event_open() system call to
test the next PMU in above list.
Fixes: 97b1198fece0 (" "s390, perf: Use common PMU interrupt disabled code")
Signed-off-by: Thomas Richter <tmricht@linux.ibm.com>
Reviewed-by: Hendrik Brueckner <brueckner@linux.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
2018-11-14 00:38:22 +09:00
|
|
|
if (is_sampling_event(event)) /* No sampling support */
|
|
|
|
return -ENOENT;
|
2012-03-23 19:13:06 +09:00
|
|
|
ev = attr->config;
|
|
|
|
/* Count user space (problem-state) only */
|
|
|
|
if (!attr->exclude_user && attr->exclude_kernel) {
|
|
|
|
if (ev >= ARRAY_SIZE(cpumf_generic_events_user))
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
ev = cpumf_generic_events_user[ev];
|
|
|
|
|
|
|
|
/* No support for kernel space counters only */
|
|
|
|
} else if (!attr->exclude_kernel && attr->exclude_user) {
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
|
|
|
/* Count user and kernel space */
|
|
|
|
} else {
|
|
|
|
if (ev >= ARRAY_SIZE(cpumf_generic_events_basic))
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
ev = cpumf_generic_events_basic[ev];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return -ENOENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ev == -1)
|
|
|
|
return -ENOENT;
|
|
|
|
|
2017-02-13 20:30:09 +09:00
|
|
|
if (ev > PERF_CPUM_CF_MAX_CTR)
|
2018-10-29 17:11:33 +09:00
|
|
|
return -ENOENT;
|
2012-03-23 19:13:06 +09:00
|
|
|
|
2016-06-03 23:55:03 +09:00
|
|
|
/* Obtain the counter set to which the specified counter belongs */
|
|
|
|
set = get_counter_set(ev);
|
|
|
|
switch (set) {
|
|
|
|
case CPUMF_CTR_SET_BASIC:
|
|
|
|
case CPUMF_CTR_SET_USER:
|
|
|
|
case CPUMF_CTR_SET_CRYPTO:
|
|
|
|
case CPUMF_CTR_SET_EXT:
|
|
|
|
case CPUMF_CTR_SET_MT_DIAG:
|
|
|
|
/*
|
|
|
|
* Use the hardware perf event structure to store the
|
|
|
|
* counter number in the 'config' member and the counter
|
|
|
|
* set number in the 'config_base'. The counter set number
|
|
|
|
* is then later used to enable/disable the counter(s).
|
|
|
|
*/
|
|
|
|
hwc->config = ev;
|
|
|
|
hwc->config_base = set;
|
|
|
|
break;
|
|
|
|
case CPUMF_CTR_SET_MAX:
|
|
|
|
/* The counter could not be associated to a counter set */
|
|
|
|
return -EINVAL;
|
|
|
|
};
|
2012-03-23 19:13:06 +09:00
|
|
|
|
|
|
|
/* Initialize for using the CPU-measurement counter facility */
|
|
|
|
if (!atomic_inc_not_zero(&num_events)) {
|
|
|
|
mutex_lock(&pmc_reserve_mutex);
|
2018-08-07 00:43:07 +09:00
|
|
|
if (atomic_read(&num_events) == 0 && __kernel_cpumcf_begin())
|
2012-03-23 19:13:06 +09:00
|
|
|
err = -EBUSY;
|
|
|
|
else
|
|
|
|
atomic_inc(&num_events);
|
|
|
|
mutex_unlock(&pmc_reserve_mutex);
|
|
|
|
}
|
|
|
|
event->destroy = hw_perf_event_destroy;
|
|
|
|
|
|
|
|
/* Finally, validate version and authorization of the counter set */
|
|
|
|
err = validate_ctr_auth(hwc);
|
|
|
|
if (!err)
|
|
|
|
err = validate_ctr_version(hwc);
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cpumf_pmu_event_init(struct perf_event *event)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
|
|
|
switch (event->attr.type) {
|
|
|
|
case PERF_TYPE_HARDWARE:
|
|
|
|
case PERF_TYPE_HW_CACHE:
|
|
|
|
case PERF_TYPE_RAW:
|
|
|
|
err = __hw_perf_event_init(event);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -ENOENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (unlikely(err) && event->destroy)
|
|
|
|
event->destroy(event);
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int hw_perf_event_reset(struct perf_event *event)
|
|
|
|
{
|
|
|
|
u64 prev, new;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
do {
|
|
|
|
prev = local64_read(&event->hw.prev_count);
|
|
|
|
err = ecctr(event->hw.config, &new);
|
|
|
|
if (err) {
|
|
|
|
if (err != 3)
|
|
|
|
break;
|
|
|
|
/* The counter is not (yet) available. This
|
|
|
|
* might happen if the counter set to which
|
|
|
|
* this counter belongs is in the disabled
|
|
|
|
* state.
|
|
|
|
*/
|
|
|
|
new = 0;
|
|
|
|
}
|
|
|
|
} while (local64_cmpxchg(&event->hw.prev_count, prev, new) != prev);
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-02-21 00:10:38 +09:00
|
|
|
static void hw_perf_event_update(struct perf_event *event)
|
2012-03-23 19:13:06 +09:00
|
|
|
{
|
|
|
|
u64 prev, new, delta;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
do {
|
|
|
|
prev = local64_read(&event->hw.prev_count);
|
|
|
|
err = ecctr(event->hw.config, &new);
|
|
|
|
if (err)
|
2017-02-21 00:10:38 +09:00
|
|
|
return;
|
2012-03-23 19:13:06 +09:00
|
|
|
} while (local64_cmpxchg(&event->hw.prev_count, prev, new) != prev);
|
|
|
|
|
|
|
|
delta = (prev <= new) ? new - prev
|
|
|
|
: (-1ULL - prev) + new + 1; /* overflow */
|
|
|
|
local64_add(delta, &event->count);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void cpumf_pmu_read(struct perf_event *event)
|
|
|
|
{
|
|
|
|
if (event->hw.state & PERF_HES_STOPPED)
|
|
|
|
return;
|
|
|
|
|
|
|
|
hw_perf_event_update(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void cpumf_pmu_start(struct perf_event *event, int flags)
|
|
|
|
{
|
2018-08-08 17:04:23 +09:00
|
|
|
struct cpu_cf_events *cpuhw = this_cpu_ptr(&cpu_cf_events);
|
2012-03-23 19:13:06 +09:00
|
|
|
struct hw_perf_event *hwc = &event->hw;
|
|
|
|
|
|
|
|
if (WARN_ON_ONCE(!(hwc->state & PERF_HES_STOPPED)))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (WARN_ON_ONCE(hwc->config == -1))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (flags & PERF_EF_RELOAD)
|
|
|
|
WARN_ON_ONCE(!(hwc->state & PERF_HES_UPTODATE));
|
|
|
|
|
|
|
|
hwc->state = 0;
|
|
|
|
|
|
|
|
/* (Re-)enable and activate the counter set */
|
|
|
|
ctr_set_enable(&cpuhw->state, hwc->config_base);
|
|
|
|
ctr_set_start(&cpuhw->state, hwc->config_base);
|
|
|
|
|
|
|
|
/* The counter set to which this counter belongs can be already active.
|
|
|
|
* Because all counters in a set are active, the event->hw.prev_count
|
|
|
|
* needs to be synchronized. At this point, the counter set can be in
|
|
|
|
* the inactive or disabled state.
|
|
|
|
*/
|
|
|
|
hw_perf_event_reset(event);
|
|
|
|
|
|
|
|
/* increment refcount for this counter set */
|
|
|
|
atomic_inc(&cpuhw->ctr_set[hwc->config_base]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void cpumf_pmu_stop(struct perf_event *event, int flags)
|
|
|
|
{
|
2018-08-08 17:04:23 +09:00
|
|
|
struct cpu_cf_events *cpuhw = this_cpu_ptr(&cpu_cf_events);
|
2012-03-23 19:13:06 +09:00
|
|
|
struct hw_perf_event *hwc = &event->hw;
|
|
|
|
|
|
|
|
if (!(hwc->state & PERF_HES_STOPPED)) {
|
|
|
|
/* Decrement reference count for this counter set and if this
|
|
|
|
* is the last used counter in the set, clear activation
|
|
|
|
* control and set the counter set state to inactive.
|
|
|
|
*/
|
|
|
|
if (!atomic_dec_return(&cpuhw->ctr_set[hwc->config_base]))
|
|
|
|
ctr_set_stop(&cpuhw->state, hwc->config_base);
|
|
|
|
event->hw.state |= PERF_HES_STOPPED;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((flags & PERF_EF_UPDATE) && !(hwc->state & PERF_HES_UPTODATE)) {
|
|
|
|
hw_perf_event_update(event);
|
|
|
|
event->hw.state |= PERF_HES_UPTODATE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cpumf_pmu_add(struct perf_event *event, int flags)
|
|
|
|
{
|
2018-08-08 17:04:23 +09:00
|
|
|
struct cpu_cf_events *cpuhw = this_cpu_ptr(&cpu_cf_events);
|
2012-03-23 19:13:06 +09:00
|
|
|
|
|
|
|
/* Check authorization for the counter set to which this
|
|
|
|
* counter belongs.
|
|
|
|
* For group events transaction, the authorization check is
|
|
|
|
* done in cpumf_pmu_commit_txn().
|
|
|
|
*/
|
2015-09-04 12:07:53 +09:00
|
|
|
if (!(cpuhw->txn_flags & PERF_PMU_TXN_ADD))
|
2012-03-23 19:13:06 +09:00
|
|
|
if (validate_ctr_auth(&event->hw))
|
2015-09-07 17:52:42 +09:00
|
|
|
return -ENOENT;
|
2012-03-23 19:13:06 +09:00
|
|
|
|
|
|
|
ctr_set_enable(&cpuhw->state, event->hw.config_base);
|
|
|
|
event->hw.state = PERF_HES_UPTODATE | PERF_HES_STOPPED;
|
|
|
|
|
|
|
|
if (flags & PERF_EF_START)
|
|
|
|
cpumf_pmu_start(event, PERF_EF_RELOAD);
|
|
|
|
|
|
|
|
perf_event_update_userpage(event);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void cpumf_pmu_del(struct perf_event *event, int flags)
|
|
|
|
{
|
2018-08-08 17:04:23 +09:00
|
|
|
struct cpu_cf_events *cpuhw = this_cpu_ptr(&cpu_cf_events);
|
2012-03-23 19:13:06 +09:00
|
|
|
|
|
|
|
cpumf_pmu_stop(event, PERF_EF_UPDATE);
|
|
|
|
|
|
|
|
/* Check if any counter in the counter set is still used. If not used,
|
|
|
|
* change the counter set to the disabled state. This also clears the
|
|
|
|
* content of all counters in the set.
|
|
|
|
*
|
|
|
|
* When a new perf event has been added but not yet started, this can
|
|
|
|
* clear enable control and resets all counters in a set. Therefore,
|
|
|
|
* cpumf_pmu_start() always has to reenable a counter set.
|
|
|
|
*/
|
|
|
|
if (!atomic_read(&cpuhw->ctr_set[event->hw.config_base]))
|
|
|
|
ctr_set_disable(&cpuhw->state, event->hw.config_base);
|
|
|
|
|
|
|
|
perf_event_update_userpage(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Start group events scheduling transaction.
|
|
|
|
* Set flags to perform a single test at commit time.
|
2015-09-04 12:07:45 +09:00
|
|
|
*
|
|
|
|
* We only support PERF_PMU_TXN_ADD transactions. Save the
|
|
|
|
* transaction flags but otherwise ignore non-PERF_PMU_TXN_ADD
|
|
|
|
* transactions.
|
2012-03-23 19:13:06 +09:00
|
|
|
*/
|
2015-09-04 12:07:45 +09:00
|
|
|
static void cpumf_pmu_start_txn(struct pmu *pmu, unsigned int txn_flags)
|
2012-03-23 19:13:06 +09:00
|
|
|
{
|
2018-08-08 17:04:23 +09:00
|
|
|
struct cpu_cf_events *cpuhw = this_cpu_ptr(&cpu_cf_events);
|
2012-03-23 19:13:06 +09:00
|
|
|
|
2015-09-04 12:07:45 +09:00
|
|
|
WARN_ON_ONCE(cpuhw->txn_flags); /* txn already in flight */
|
|
|
|
|
|
|
|
cpuhw->txn_flags = txn_flags;
|
|
|
|
if (txn_flags & ~PERF_PMU_TXN_ADD)
|
|
|
|
return;
|
|
|
|
|
2012-03-23 19:13:06 +09:00
|
|
|
perf_pmu_disable(pmu);
|
|
|
|
cpuhw->tx_state = cpuhw->state;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Stop and cancel a group events scheduling tranctions.
|
|
|
|
* Assumes cpumf_pmu_del() is called for each successful added
|
|
|
|
* cpumf_pmu_add() during the transaction.
|
|
|
|
*/
|
|
|
|
static void cpumf_pmu_cancel_txn(struct pmu *pmu)
|
|
|
|
{
|
2015-09-04 12:07:45 +09:00
|
|
|
unsigned int txn_flags;
|
2018-08-08 17:04:23 +09:00
|
|
|
struct cpu_cf_events *cpuhw = this_cpu_ptr(&cpu_cf_events);
|
2012-03-23 19:13:06 +09:00
|
|
|
|
2015-09-04 12:07:45 +09:00
|
|
|
WARN_ON_ONCE(!cpuhw->txn_flags); /* no txn in flight */
|
|
|
|
|
|
|
|
txn_flags = cpuhw->txn_flags;
|
|
|
|
cpuhw->txn_flags = 0;
|
|
|
|
if (txn_flags & ~PERF_PMU_TXN_ADD)
|
|
|
|
return;
|
|
|
|
|
2012-03-23 19:13:06 +09:00
|
|
|
WARN_ON(cpuhw->tx_state != cpuhw->state);
|
|
|
|
|
|
|
|
perf_pmu_enable(pmu);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Commit the group events scheduling transaction. On success, the
|
|
|
|
* transaction is closed. On error, the transaction is kept open
|
|
|
|
* until cpumf_pmu_cancel_txn() is called.
|
|
|
|
*/
|
|
|
|
static int cpumf_pmu_commit_txn(struct pmu *pmu)
|
|
|
|
{
|
2018-08-08 17:04:23 +09:00
|
|
|
struct cpu_cf_events *cpuhw = this_cpu_ptr(&cpu_cf_events);
|
2012-03-23 19:13:06 +09:00
|
|
|
u64 state;
|
|
|
|
|
2015-09-04 12:07:45 +09:00
|
|
|
WARN_ON_ONCE(!cpuhw->txn_flags); /* no txn in flight */
|
|
|
|
|
|
|
|
if (cpuhw->txn_flags & ~PERF_PMU_TXN_ADD) {
|
|
|
|
cpuhw->txn_flags = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-03-23 19:13:06 +09:00
|
|
|
/* check if the updated state can be scheduled */
|
|
|
|
state = cpuhw->state & ~((1 << CPUMF_LCCTL_ENABLE_SHIFT) - 1);
|
|
|
|
state >>= CPUMF_LCCTL_ENABLE_SHIFT;
|
|
|
|
if ((state & cpuhw->info.auth_ctl) != state)
|
2015-09-07 17:52:42 +09:00
|
|
|
return -ENOENT;
|
2012-03-23 19:13:06 +09:00
|
|
|
|
2015-09-04 12:07:45 +09:00
|
|
|
cpuhw->txn_flags = 0;
|
2012-03-23 19:13:06 +09:00
|
|
|
perf_pmu_enable(pmu);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Performance monitoring unit for s390x */
|
|
|
|
static struct pmu cpumf_pmu = {
|
s390/cpum_cf: use perf software context for hardware counters
On s390, there are two different hardware PMUs for counting and
sampling. Previously, both PMUs have shared the perf_hw_context
which is not correct and, recently, results in this warning:
------------[ cut here ]------------
WARNING: CPU: 5 PID: 1 at kernel/events/core.c:8485 perf_pmu_register+0x420/0x428
Modules linked in:
CPU: 5 PID: 1 Comm: swapper/0 Not tainted 4.7.0-rc1+ #2
task: 00000009c5240000 ti: 00000009c5234000 task.ti: 00000009c5234000
Krnl PSW : 0704c00180000000 0000000000220c50 (perf_pmu_register+0x420/0x428)
R:0 T:1 IO:1 EX:1 Key:0 M:1 W:0 P:0 AS:3 CC:0 PM:0 RI:0 EA:3
Krnl GPRS: ffffffffffffffff 0000000000b15ac6 0000000000000000 00000009cb440000
000000000022087a 0000000000000000 0000000000b78fa0 0000000000000000
0000000000a9aa90 0000000000000084 0000000000000005 000000000088a97a
0000000000000004 0000000000749dd0 000000000022087a 00000009c5237cc0
Krnl Code: 0000000000220c44: a7f4ff54 brc 15,220aec
0000000000220c48: 92011000 mvi 0(%r1),1
#0000000000220c4c: a7f40001 brc 15,220c4e
>0000000000220c50: a7f4ff12 brc 15,220a74
0000000000220c54: 0707 bcr 0,%r7
0000000000220c56: 0707 bcr 0,%r7
0000000000220c58: ebdff0800024 stmg %r13,%r15,128(%r15)
0000000000220c5e: a7f13fe0 tmll %r15,16352
Call Trace:
([<000000000022087a>] perf_pmu_register+0x4a/0x428)
([<0000000000b2c25c>] init_cpum_sampling_pmu+0x14c/0x1f8)
([<0000000000100248>] do_one_initcall+0x48/0x140)
([<0000000000b25d26>] kernel_init_freeable+0x1e6/0x2a0)
([<000000000072bda4>] kernel_init+0x24/0x138)
([<000000000073495e>] kernel_thread_starter+0x6/0xc)
([<0000000000734958>] kernel_thread_starter+0x0/0xc)
Last Breaking-Event-Address:
[<0000000000220c4c>] perf_pmu_register+0x41c/0x428
---[ end trace 0c6ef9f5b771ad97 ]---
Using the perf_sw_context is an option because the cpum_cf PMU does
not use interrupts. To make this more clear, initialize the
capabilities in the PMU structure.
Signed-off-by: Hendrik Brueckner <brueckner@linux.vnet.ibm.com>
Suggested-by: Peter Zijlstra <peterz@infradead.org>
Acked-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
2016-06-09 19:28:13 +09:00
|
|
|
.task_ctx_nr = perf_sw_context,
|
|
|
|
.capabilities = PERF_PMU_CAP_NO_INTERRUPT,
|
2012-03-23 19:13:06 +09:00
|
|
|
.pmu_enable = cpumf_pmu_enable,
|
|
|
|
.pmu_disable = cpumf_pmu_disable,
|
|
|
|
.event_init = cpumf_pmu_event_init,
|
|
|
|
.add = cpumf_pmu_add,
|
|
|
|
.del = cpumf_pmu_del,
|
|
|
|
.start = cpumf_pmu_start,
|
|
|
|
.stop = cpumf_pmu_stop,
|
|
|
|
.read = cpumf_pmu_read,
|
|
|
|
.start_txn = cpumf_pmu_start_txn,
|
|
|
|
.commit_txn = cpumf_pmu_commit_txn,
|
|
|
|
.cancel_txn = cpumf_pmu_cancel_txn,
|
|
|
|
};
|
|
|
|
|
2016-07-14 02:16:21 +09:00
|
|
|
static int cpumf_pmf_setup(unsigned int cpu, int flags)
|
2012-03-23 19:13:06 +09:00
|
|
|
{
|
2016-07-14 02:16:21 +09:00
|
|
|
local_irq_disable();
|
|
|
|
setup_pmc_cpu(&flags);
|
|
|
|
local_irq_enable();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int s390_pmu_online_cpu(unsigned int cpu)
|
|
|
|
{
|
|
|
|
return cpumf_pmf_setup(cpu, PMC_INIT);
|
|
|
|
}
|
2012-03-23 19:13:06 +09:00
|
|
|
|
2016-07-14 02:16:21 +09:00
|
|
|
static int s390_pmu_offline_cpu(unsigned int cpu)
|
|
|
|
{
|
|
|
|
return cpumf_pmf_setup(cpu, PMC_RELEASE);
|
2012-03-23 19:13:06 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
static int __init cpumf_pmu_init(void)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
if (!cpum_cf_avail())
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
/* clear bit 15 of cr0 to unauthorize problem-state to
|
|
|
|
* extract measurement counters */
|
|
|
|
ctl_clear_bit(0, 48);
|
|
|
|
|
|
|
|
/* register handler for measurement-alert interruptions */
|
2014-03-31 22:24:08 +09:00
|
|
|
rc = register_external_irq(EXT_IRQ_MEASURE_ALERT,
|
|
|
|
cpumf_measurement_alert);
|
2012-03-23 19:13:06 +09:00
|
|
|
if (rc) {
|
|
|
|
pr_err("Registering for CPU-measurement alerts "
|
|
|
|
"failed with rc=%i\n", rc);
|
2016-07-14 02:16:21 +09:00
|
|
|
return rc;
|
2012-03-23 19:13:06 +09:00
|
|
|
}
|
|
|
|
|
2013-12-11 20:44:40 +09:00
|
|
|
cpumf_pmu.attr_groups = cpumf_cf_event_group();
|
2012-03-23 19:13:06 +09:00
|
|
|
rc = perf_pmu_register(&cpumf_pmu, "cpum_cf", PERF_TYPE_RAW);
|
|
|
|
if (rc) {
|
|
|
|
pr_err("Registering the cpum_cf PMU failed with rc=%i\n", rc);
|
2014-03-31 22:24:08 +09:00
|
|
|
unregister_external_irq(EXT_IRQ_MEASURE_ALERT,
|
|
|
|
cpumf_measurement_alert);
|
2016-07-14 02:16:21 +09:00
|
|
|
return rc;
|
2012-03-23 19:13:06 +09:00
|
|
|
}
|
2018-10-25 23:58:15 +09:00
|
|
|
|
|
|
|
rc = cpuhp_setup_state(CPUHP_AP_PERF_S390_CF_ONLINE,
|
|
|
|
"perf/s390/cf:online",
|
|
|
|
s390_pmu_online_cpu, s390_pmu_offline_cpu);
|
|
|
|
if (!rc)
|
|
|
|
cpum_cf_initalized = true;
|
|
|
|
|
|
|
|
return rc;
|
2012-03-23 19:13:06 +09:00
|
|
|
}
|
|
|
|
early_initcall(cpumf_pmu_init);
|