diff options
Diffstat (limited to 'kernel/perf_counter.c')
-rw-r--r-- | kernel/perf_counter.c | 42 |
1 files changed, 16 insertions, 26 deletions
diff --git a/kernel/perf_counter.c b/kernel/perf_counter.c index 56b7eb53d673..f4f7596f7841 100644 --- a/kernel/perf_counter.c +++ b/kernel/perf_counter.c | |||
@@ -172,8 +172,7 @@ static void __perf_counter_remove_from_context(void *info) | |||
172 | if (ctx->task && cpuctx->task_ctx != ctx) | 172 | if (ctx->task && cpuctx->task_ctx != ctx) |
173 | return; | 173 | return; |
174 | 174 | ||
175 | curr_rq_lock_irq_save(&flags); | 175 | spin_lock_irqsave(&ctx->lock, flags); |
176 | spin_lock(&ctx->lock); | ||
177 | 176 | ||
178 | counter_sched_out(counter, cpuctx, ctx); | 177 | counter_sched_out(counter, cpuctx, ctx); |
179 | 178 | ||
@@ -198,8 +197,7 @@ static void __perf_counter_remove_from_context(void *info) | |||
198 | perf_max_counters - perf_reserved_percpu); | 197 | perf_max_counters - perf_reserved_percpu); |
199 | } | 198 | } |
200 | 199 | ||
201 | spin_unlock(&ctx->lock); | 200 | spin_unlock_irqrestore(&ctx->lock, flags); |
202 | curr_rq_unlock_irq_restore(&flags); | ||
203 | } | 201 | } |
204 | 202 | ||
205 | 203 | ||
@@ -319,8 +317,7 @@ static void __perf_counter_disable(void *info) | |||
319 | if (ctx->task && cpuctx->task_ctx != ctx) | 317 | if (ctx->task && cpuctx->task_ctx != ctx) |
320 | return; | 318 | return; |
321 | 319 | ||
322 | curr_rq_lock_irq_save(&flags); | 320 | spin_lock_irqsave(&ctx->lock, flags); |
323 | spin_lock(&ctx->lock); | ||
324 | 321 | ||
325 | /* | 322 | /* |
326 | * If the counter is on, turn it off. | 323 | * If the counter is on, turn it off. |
@@ -336,8 +333,7 @@ static void __perf_counter_disable(void *info) | |||
336 | counter->state = PERF_COUNTER_STATE_OFF; | 333 | counter->state = PERF_COUNTER_STATE_OFF; |
337 | } | 334 | } |
338 | 335 | ||
339 | spin_unlock(&ctx->lock); | 336 | spin_unlock_irqrestore(&ctx->lock, flags); |
340 | curr_rq_unlock_irq_restore(&flags); | ||
341 | } | 337 | } |
342 | 338 | ||
343 | /* | 339 | /* |
@@ -515,8 +511,7 @@ static void __perf_install_in_context(void *info) | |||
515 | if (ctx->task && cpuctx->task_ctx != ctx) | 511 | if (ctx->task && cpuctx->task_ctx != ctx) |
516 | return; | 512 | return; |
517 | 513 | ||
518 | curr_rq_lock_irq_save(&flags); | 514 | spin_lock_irqsave(&ctx->lock, flags); |
519 | spin_lock(&ctx->lock); | ||
520 | update_context_time(ctx); | 515 | update_context_time(ctx); |
521 | 516 | ||
522 | /* | 517 | /* |
@@ -565,8 +560,7 @@ static void __perf_install_in_context(void *info) | |||
565 | unlock: | 560 | unlock: |
566 | hw_perf_restore(perf_flags); | 561 | hw_perf_restore(perf_flags); |
567 | 562 | ||
568 | spin_unlock(&ctx->lock); | 563 | spin_unlock_irqrestore(&ctx->lock, flags); |
569 | curr_rq_unlock_irq_restore(&flags); | ||
570 | } | 564 | } |
571 | 565 | ||
572 | /* | 566 | /* |
@@ -641,8 +635,7 @@ static void __perf_counter_enable(void *info) | |||
641 | if (ctx->task && cpuctx->task_ctx != ctx) | 635 | if (ctx->task && cpuctx->task_ctx != ctx) |
642 | return; | 636 | return; |
643 | 637 | ||
644 | curr_rq_lock_irq_save(&flags); | 638 | spin_lock_irqsave(&ctx->lock, flags); |
645 | spin_lock(&ctx->lock); | ||
646 | update_context_time(ctx); | 639 | update_context_time(ctx); |
647 | 640 | ||
648 | counter->prev_state = counter->state; | 641 | counter->prev_state = counter->state; |
@@ -678,8 +671,7 @@ static void __perf_counter_enable(void *info) | |||
678 | } | 671 | } |
679 | 672 | ||
680 | unlock: | 673 | unlock: |
681 | spin_unlock(&ctx->lock); | 674 | spin_unlock_irqrestore(&ctx->lock, flags); |
682 | curr_rq_unlock_irq_restore(&flags); | ||
683 | } | 675 | } |
684 | 676 | ||
685 | /* | 677 | /* |
@@ -971,7 +963,7 @@ int perf_counter_task_disable(void) | |||
971 | if (likely(!ctx->nr_counters)) | 963 | if (likely(!ctx->nr_counters)) |
972 | return 0; | 964 | return 0; |
973 | 965 | ||
974 | curr_rq_lock_irq_save(&flags); | 966 | local_irq_save(flags); |
975 | cpu = smp_processor_id(); | 967 | cpu = smp_processor_id(); |
976 | 968 | ||
977 | perf_counter_task_sched_out(curr, cpu); | 969 | perf_counter_task_sched_out(curr, cpu); |
@@ -992,9 +984,7 @@ int perf_counter_task_disable(void) | |||
992 | 984 | ||
993 | hw_perf_restore(perf_flags); | 985 | hw_perf_restore(perf_flags); |
994 | 986 | ||
995 | spin_unlock(&ctx->lock); | 987 | spin_unlock_irqrestore(&ctx->lock, flags); |
996 | |||
997 | curr_rq_unlock_irq_restore(&flags); | ||
998 | 988 | ||
999 | return 0; | 989 | return 0; |
1000 | } | 990 | } |
@@ -1011,7 +1001,7 @@ int perf_counter_task_enable(void) | |||
1011 | if (likely(!ctx->nr_counters)) | 1001 | if (likely(!ctx->nr_counters)) |
1012 | return 0; | 1002 | return 0; |
1013 | 1003 | ||
1014 | curr_rq_lock_irq_save(&flags); | 1004 | local_irq_save(flags); |
1015 | cpu = smp_processor_id(); | 1005 | cpu = smp_processor_id(); |
1016 | 1006 | ||
1017 | perf_counter_task_sched_out(curr, cpu); | 1007 | perf_counter_task_sched_out(curr, cpu); |
@@ -1037,7 +1027,7 @@ int perf_counter_task_enable(void) | |||
1037 | 1027 | ||
1038 | perf_counter_task_sched_in(curr, cpu); | 1028 | perf_counter_task_sched_in(curr, cpu); |
1039 | 1029 | ||
1040 | curr_rq_unlock_irq_restore(&flags); | 1030 | local_irq_restore(flags); |
1041 | 1031 | ||
1042 | return 0; | 1032 | return 0; |
1043 | } | 1033 | } |
@@ -1095,12 +1085,12 @@ static void __read(void *info) | |||
1095 | struct perf_counter_context *ctx = counter->ctx; | 1085 | struct perf_counter_context *ctx = counter->ctx; |
1096 | unsigned long flags; | 1086 | unsigned long flags; |
1097 | 1087 | ||
1098 | curr_rq_lock_irq_save(&flags); | 1088 | local_irq_save(flags); |
1099 | if (ctx->is_active) | 1089 | if (ctx->is_active) |
1100 | update_context_time(ctx); | 1090 | update_context_time(ctx); |
1101 | counter->hw_ops->read(counter); | 1091 | counter->hw_ops->read(counter); |
1102 | update_counter_times(counter); | 1092 | update_counter_times(counter); |
1103 | curr_rq_unlock_irq_restore(&flags); | 1093 | local_irq_restore(flags); |
1104 | } | 1094 | } |
1105 | 1095 | ||
1106 | static u64 perf_counter_read(struct perf_counter *counter) | 1096 | static u64 perf_counter_read(struct perf_counter *counter) |
@@ -2890,7 +2880,7 @@ __perf_counter_exit_task(struct task_struct *child, | |||
2890 | * Be careful about zapping the list - IRQ/NMI context | 2880 | * Be careful about zapping the list - IRQ/NMI context |
2891 | * could still be processing it: | 2881 | * could still be processing it: |
2892 | */ | 2882 | */ |
2893 | curr_rq_lock_irq_save(&flags); | 2883 | local_irq_save(flags); |
2894 | perf_flags = hw_perf_save_disable(); | 2884 | perf_flags = hw_perf_save_disable(); |
2895 | 2885 | ||
2896 | cpuctx = &__get_cpu_var(perf_cpu_context); | 2886 | cpuctx = &__get_cpu_var(perf_cpu_context); |
@@ -2903,7 +2893,7 @@ __perf_counter_exit_task(struct task_struct *child, | |||
2903 | child_ctx->nr_counters--; | 2893 | child_ctx->nr_counters--; |
2904 | 2894 | ||
2905 | hw_perf_restore(perf_flags); | 2895 | hw_perf_restore(perf_flags); |
2906 | curr_rq_unlock_irq_restore(&flags); | 2896 | local_irq_restore(flags); |
2907 | } | 2897 | } |
2908 | 2898 | ||
2909 | parent_counter = child_counter->parent; | 2899 | parent_counter = child_counter->parent; |