2008-10-23 12:26:29 +07:00
|
|
|
#ifndef _ASM_X86_CURRENT_H
|
|
|
|
#define _ASM_X86_CURRENT_H
|
2008-05-10 09:09:48 +07:00
|
|
|
|
|
|
|
#include <linux/compiler.h>
|
|
|
|
#include <asm/percpu.h>
|
|
|
|
|
2009-01-18 22:38:58 +07:00
|
|
|
#ifndef __ASSEMBLY__
|
2008-05-10 09:09:48 +07:00
|
|
|
struct task_struct;
|
|
|
|
|
|
|
|
DECLARE_PER_CPU(struct task_struct *, current_task);
|
|
|
|
|
|
|
|
static __always_inline struct task_struct *get_current(void)
|
|
|
|
{
|
2009-08-03 12:08:48 +07:00
|
|
|
return percpu_read_stable(current_task);
|
2008-05-10 09:09:48 +07:00
|
|
|
}
|
|
|
|
|
2009-01-18 22:38:58 +07:00
|
|
|
#define current get_current()
|
2008-05-10 09:09:48 +07:00
|
|
|
|
|
|
|
#endif /* __ASSEMBLY__ */
|
|
|
|
|
2008-10-23 12:26:29 +07:00
|
|
|
#endif /* _ASM_X86_CURRENT_H */
|