Commit 75564232 authored by Peter Zijlstra's avatar Peter Zijlstra Committed by Ingo Molnar

perf_counter: use list_move_tail()

Instead of del/add use a move list-op.
Signed-off-by: default avatarPeter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 595258aa
...@@ -89,8 +89,7 @@ list_del_counter(struct perf_counter *counter, struct perf_counter_context *ctx) ...@@ -89,8 +89,7 @@ list_del_counter(struct perf_counter *counter, struct perf_counter_context *ctx)
list_for_each_entry_safe(sibling, tmp, list_for_each_entry_safe(sibling, tmp,
&counter->sibling_list, list_entry) { &counter->sibling_list, list_entry) {
list_del_init(&sibling->list_entry); list_move_tail(&sibling->list_entry, &ctx->counter_list);
list_add_tail(&sibling->list_entry, &ctx->counter_list);
sibling->group_leader = sibling; sibling->group_leader = sibling;
} }
} }
...@@ -959,8 +958,7 @@ static void rotate_ctx(struct perf_counter_context *ctx) ...@@ -959,8 +958,7 @@ static void rotate_ctx(struct perf_counter_context *ctx)
*/ */
perf_flags = hw_perf_save_disable(); perf_flags = hw_perf_save_disable();
list_for_each_entry(counter, &ctx->counter_list, list_entry) { list_for_each_entry(counter, &ctx->counter_list, list_entry) {
list_del(&counter->list_entry); list_move_tail(&counter->list_entry, &ctx->counter_list);
list_add_tail(&counter->list_entry, &ctx->counter_list);
break; break;
} }
hw_perf_restore(perf_flags); hw_perf_restore(perf_flags);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment