arm64: Implement cpu_relax as yield
ARM64 has the yield nop hint which has the intended semantics of cpu_relax. Implement. The immediate application is ARM CPU emulators. An emulator can take advantage of the yield hint to de-prioritise an emulated CPU in favor of other emulation tasks. QEMU A64 SMP emulation has yield awareness, and sees a significant boot time performance increase with this change. Signed-off-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com> Acked-by: Will Deacon <will.deacon@arm.com> Signed-off-by: Will Deacon <will.deacon@arm.com>
This commit is contained in:
parent
06e5801b8c
commit
1baa82f480
1 changed files with 5 additions and 1 deletions
|
@ -127,7 +127,11 @@ extern void release_thread(struct task_struct *);
|
||||||
|
|
||||||
unsigned long get_wchan(struct task_struct *p);
|
unsigned long get_wchan(struct task_struct *p);
|
||||||
|
|
||||||
#define cpu_relax() barrier()
|
static inline void cpu_relax(void)
|
||||||
|
{
|
||||||
|
asm volatile("yield" ::: "memory");
|
||||||
|
}
|
||||||
|
|
||||||
#define cpu_relax_lowlatency() cpu_relax()
|
#define cpu_relax_lowlatency() cpu_relax()
|
||||||
|
|
||||||
/* Thread switching */
|
/* Thread switching */
|
||||||
|
|
Loading…
Add table
Reference in a new issue