]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - arch/arm64/include/asm/current.h
Merge remote-tracking branches 'asoc/topic/ac97', 'asoc/topic/ac97-mfd', 'asoc/topic...
[mirror_ubuntu-focal-kernel.git] / arch / arm64 / include / asm / current.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
c02433dd
MR
2#ifndef __ASM_CURRENT_H
3#define __ASM_CURRENT_H
4
5#include <linux/compiler.h>
6
c02433dd
MR
7#ifndef __ASSEMBLY__
8
9struct task_struct;
10
9d84fb27
MR
11/*
12 * We don't use read_sysreg() as we want the compiler to cache the value where
13 * possible.
14 */
c02433dd
MR
15static __always_inline struct task_struct *get_current(void)
16{
9d84fb27
MR
17 unsigned long sp_el0;
18
19 asm ("mrs %0, sp_el0" : "=r" (sp_el0));
20
21 return (struct task_struct *)sp_el0;
c02433dd
MR
22}
23
24#define current get_current()
25
26#endif /* __ASSEMBLY__ */
27
28#endif /* __ASM_CURRENT_H */
29