diff options
| -rw-r--r-- | kernel/perf_counter.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/kernel/perf_counter.c b/kernel/perf_counter.c index b8c6b97a20a3..3f841beefc7b 100644 --- a/kernel/perf_counter.c +++ b/kernel/perf_counter.c | |||
| @@ -307,6 +307,10 @@ counter_sched_out(struct perf_counter *counter, | |||
| 307 | return; | 307 | return; |
| 308 | 308 | ||
| 309 | counter->state = PERF_COUNTER_STATE_INACTIVE; | 309 | counter->state = PERF_COUNTER_STATE_INACTIVE; |
| 310 | if (counter->pending_disable) { | ||
| 311 | counter->pending_disable = 0; | ||
| 312 | counter->state = PERF_COUNTER_STATE_OFF; | ||
| 313 | } | ||
| 310 | counter->tstamp_stopped = ctx->time; | 314 | counter->tstamp_stopped = ctx->time; |
| 311 | counter->pmu->disable(counter); | 315 | counter->pmu->disable(counter); |
| 312 | counter->oncpu = -1; | 316 | counter->oncpu = -1; |
| @@ -2343,7 +2347,7 @@ static void perf_pending_counter(struct perf_pending_entry *entry) | |||
| 2343 | 2347 | ||
| 2344 | if (counter->pending_disable) { | 2348 | if (counter->pending_disable) { |
| 2345 | counter->pending_disable = 0; | 2349 | counter->pending_disable = 0; |
| 2346 | perf_counter_disable(counter); | 2350 | __perf_counter_disable(counter); |
| 2347 | } | 2351 | } |
| 2348 | 2352 | ||
| 2349 | if (counter->pending_wakeup) { | 2353 | if (counter->pending_wakeup) { |
