Skip to content

Commit

Permalink
arm64: Fix task tracing
Browse files Browse the repository at this point in the history
For accurate accounting call contextidr_thread_switch before a
task is scheduled, rather than after, when the 'next' variable has a
different meaning since we switched the stacks.

Signed-off-by: Christopher Covington <cov@codeaurora.org>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
  • Loading branch information
Christopher Covington authored and Catalin Marinas committed Apr 17, 2013
1 parent 5c1ce6f commit 3325732
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm64/kernel/process.c
Original file line number Diff line number Diff line change
Expand Up @@ -311,11 +311,11 @@ struct task_struct *__switch_to(struct task_struct *prev,
fpsimd_thread_switch(next);
tls_thread_switch(next);
hw_breakpoint_thread_switch(next);
contextidr_thread_switch(next);

/* the actual thread switch */
last = cpu_switch_to(prev, next);

contextidr_thread_switch(next);
return last;
}

Expand Down

0 comments on commit 3325732

Please sign in to comment.