2008-05-12 13:43:41 +00:00
|
|
|
/* thread_info.h: low-level thread information
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 David Howells (dhowells@redhat.com)
|
|
|
|
* - Incorporating suggestions made by Linus Torvalds and Dave Miller
|
|
|
|
*/
|
|
|
|
|
2008-10-23 05:26:29 +00:00
|
|
|
#ifndef _ASM_X86_THREAD_INFO_H
|
|
|
|
#define _ASM_X86_THREAD_INFO_H
|
2008-05-12 13:43:41 +00:00
|
|
|
|
|
|
|
#include <linux/compiler.h>
|
|
|
|
#include <asm/page.h>
|
2014-02-06 14:41:31 +00:00
|
|
|
#include <asm/percpu.h>
|
2008-04-29 01:52:33 +00:00
|
|
|
#include <asm/types.h>
|
|
|
|
|
2008-05-12 13:43:41 +00:00
|
|
|
/*
|
|
|
|
* low level task data that entry.S needs immediate access to
|
|
|
|
* - this struct should fit entirely inside of one cache line
|
|
|
|
* - this struct shares the supervisor stack pages
|
|
|
|
*/
|
|
|
|
#ifndef __ASSEMBLY__
|
2008-04-29 01:52:35 +00:00
|
|
|
struct task_struct;
|
|
|
|
struct exec_domain;
|
|
|
|
#include <asm/processor.h>
|
2011-07-26 23:09:06 +00:00
|
|
|
#include <linux/atomic.h>
|
2008-05-12 13:43:41 +00:00
|
|
|
|
|
|
|
struct thread_info {
|
|
|
|
struct task_struct *task; /* main task structure */
|
|
|
|
struct exec_domain *exec_domain; /* execution domain */
|
2008-12-03 23:58:19 +00:00
|
|
|
__u32 flags; /* low level flags */
|
2008-04-29 01:52:35 +00:00
|
|
|
__u32 status; /* thread synchronous flags */
|
2008-05-12 13:43:41 +00:00
|
|
|
__u32 cpu; /* current CPU */
|
2013-08-14 12:51:00 +00:00
|
|
|
int saved_preempt_count;
|
2008-04-29 01:52:35 +00:00
|
|
|
mm_segment_t addr_limit;
|
2008-05-12 13:43:41 +00:00
|
|
|
struct restart_block restart_block;
|
2008-04-29 01:52:35 +00:00
|
|
|
void __user *sysenter_return;
|
2014-02-06 14:41:30 +00:00
|
|
|
unsigned int sig_on_uaccess_error:1;
|
|
|
|
unsigned int uaccess_err:1; /* uaccess failed */
|
2008-05-12 13:43:41 +00:00
|
|
|
};
|
2008-04-29 01:52:36 +00:00
|
|
|
|
|
|
|
#define INIT_THREAD_INFO(tsk) \
|
|
|
|
{ \
|
|
|
|
.task = &tsk, \
|
|
|
|
.exec_domain = &default_exec_domain, \
|
|
|
|
.flags = 0, \
|
|
|
|
.cpu = 0, \
|
2013-08-14 12:51:00 +00:00
|
|
|
.saved_preempt_count = INIT_PREEMPT_COUNT, \
|
2008-04-29 01:52:36 +00:00
|
|
|
.addr_limit = KERNEL_DS, \
|
|
|
|
.restart_block = { \
|
|
|
|
.fn = do_no_restart_syscall, \
|
|
|
|
}, \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define init_thread_info (init_thread_union.thread_info)
|
|
|
|
#define init_stack (init_thread_union.stack)
|
|
|
|
|
2008-05-12 13:43:41 +00:00
|
|
|
#else /* !__ASSEMBLY__ */
|
|
|
|
|
|
|
|
#include <asm/asm-offsets.h>
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2008-04-29 01:52:38 +00:00
|
|
|
/*
|
|
|
|
* thread information flags
|
|
|
|
* - these are process state flags that various assembly files
|
|
|
|
* may need to access
|
|
|
|
* - pending work-to-be-done flags are in LSW
|
|
|
|
* - other flags in MSW
|
|
|
|
* Warning: layout of LSW is hardcoded in entry.S
|
|
|
|
*/
|
|
|
|
#define TIF_SYSCALL_TRACE 0 /* syscall trace active */
|
2008-04-20 02:10:57 +00:00
|
|
|
#define TIF_NOTIFY_RESUME 1 /* callback before returning to user */
|
2008-04-29 01:52:38 +00:00
|
|
|
#define TIF_SIGPENDING 2 /* signal pending */
|
|
|
|
#define TIF_NEED_RESCHED 3 /* rescheduling necessary */
|
|
|
|
#define TIF_SINGLESTEP 4 /* reenable singlestep on user return*/
|
|
|
|
#define TIF_SYSCALL_EMU 6 /* syscall emulation active */
|
|
|
|
#define TIF_SYSCALL_AUDIT 7 /* syscall auditing active */
|
|
|
|
#define TIF_SECCOMP 8 /* secure computing */
|
|
|
|
#define TIF_MCE_NOTIFY 10 /* notify userspace of an MCE */
|
2009-09-19 06:40:22 +00:00
|
|
|
#define TIF_USER_RETURN_NOTIFY 11 /* notify kernel of userspace return */
|
uprobes/core: Handle breakpoint and singlestep exceptions
Uprobes uses exception notifiers to get to know if a thread hit
a breakpoint or a singlestep exception.
When a thread hits a uprobe or is singlestepping post a uprobe
hit, the uprobe exception notifier sets its TIF_UPROBE bit,
which will then be checked on its return to userspace path
(do_notify_resume() ->uprobe_notify_resume()), where the
consumers handlers are run (in task context) based on the
defined filters.
Uprobe hits are thread specific and hence we need to maintain
information about if a task hit a uprobe, what uprobe was hit,
the slot where the original instruction was copied for xol so
that it can be singlestepped with appropriate fixups.
In some cases, special care is needed for instructions that are
executed out of line (xol). These are architecture specific
artefacts, such as handling RIP relative instructions on x86_64.
Since the instruction at which the uprobe was inserted is
executed out of line, architecture specific fixups are added so
that the thread continues normal execution in the presence of a
uprobe.
Postpone the signals until we execute the probed insn.
post_xol() path does a recalc_sigpending() before return to
user-mode, this ensures the signal can't be lost.
Uprobes relies on DIE_DEBUG notification to notify if a
singlestep is complete.
Adds x86 specific uprobe exception notifiers and appropriate
hooks needed to determine a uprobe hit and subsequent post
processing.
Add requisite x86 fixups for xol for uprobes. Specific cases
needing fixups include relative jumps (x86_64), calls, etc.
Where possible, we check and skip singlestepping the
breakpointed instructions. For now we skip single byte as well
as few multibyte nop instructions. However this can be extended
to other instructions too.
Credits to Oleg Nesterov for suggestions/patches related to
signal, breakpoint, singlestep handling code.
Signed-off-by: Srikar Dronamraju <srikar@linux.vnet.ibm.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
Cc: Jim Keniston <jkenisto@linux.vnet.ibm.com>
Cc: Linux-mm <linux-mm@kvack.org>
Cc: Oleg Nesterov <oleg@redhat.com>
Cc: Andi Kleen <andi@firstfloor.org>
Cc: Christoph Hellwig <hch@infradead.org>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Arnaldo Carvalho de Melo <acme@infradead.org>
Cc: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/20120313180011.29771.89027.sendpatchset@srdronam.in.ibm.com
[ Performed various cleanliness edits ]
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2012-03-13 18:00:11 +00:00
|
|
|
#define TIF_UPROBE 12 /* breakpointed or singlestepping */
|
2008-04-29 01:52:38 +00:00
|
|
|
#define TIF_NOTSC 16 /* TSC is not accessible in userland */
|
2012-02-06 21:03:09 +00:00
|
|
|
#define TIF_IA32 17 /* IA32 compatibility process */
|
2008-04-29 01:52:38 +00:00
|
|
|
#define TIF_FORK 18 /* ret_from_fork */
|
2012-07-11 18:26:34 +00:00
|
|
|
#define TIF_NOHZ 19 /* in adaptive nohz mode */
|
2010-05-14 09:13:27 +00:00
|
|
|
#define TIF_MEMDIE 20 /* is terminating due to OOM killer */
|
2014-04-11 07:59:05 +00:00
|
|
|
#define TIF_POLLING_NRFLAG 21 /* idle is polling for TIF_NEED_RESCHED */
|
2008-04-29 01:52:38 +00:00
|
|
|
#define TIF_IO_BITMAP 22 /* uses I/O bitmap */
|
|
|
|
#define TIF_FORCED_TF 24 /* true if TF in eflags artificially */
|
2010-03-25 13:51:51 +00:00
|
|
|
#define TIF_BLOCKSTEP 25 /* set when we want DEBUGCTLMSR_BTF */
|
2009-02-18 07:46:21 +00:00
|
|
|
#define TIF_LAZY_MMU_UPDATES 27 /* task is updating the mmu lazily */
|
2009-08-24 21:43:11 +00:00
|
|
|
#define TIF_SYSCALL_TRACEPOINT 28 /* syscall tracepoint instrumentation */
|
2012-02-06 21:03:09 +00:00
|
|
|
#define TIF_ADDR32 29 /* 32-bit address space on 64 bits */
|
2012-02-14 21:56:49 +00:00
|
|
|
#define TIF_X32 30 /* 32-bit native x86-64 binary */
|
2008-04-29 01:52:38 +00:00
|
|
|
|
|
|
|
#define _TIF_SYSCALL_TRACE (1 << TIF_SYSCALL_TRACE)
|
2008-04-20 02:10:57 +00:00
|
|
|
#define _TIF_NOTIFY_RESUME (1 << TIF_NOTIFY_RESUME)
|
2008-04-29 01:52:38 +00:00
|
|
|
#define _TIF_SIGPENDING (1 << TIF_SIGPENDING)
|
|
|
|
#define _TIF_SINGLESTEP (1 << TIF_SINGLESTEP)
|
|
|
|
#define _TIF_NEED_RESCHED (1 << TIF_NEED_RESCHED)
|
|
|
|
#define _TIF_SYSCALL_EMU (1 << TIF_SYSCALL_EMU)
|
|
|
|
#define _TIF_SYSCALL_AUDIT (1 << TIF_SYSCALL_AUDIT)
|
|
|
|
#define _TIF_SECCOMP (1 << TIF_SECCOMP)
|
|
|
|
#define _TIF_MCE_NOTIFY (1 << TIF_MCE_NOTIFY)
|
2009-09-19 06:40:22 +00:00
|
|
|
#define _TIF_USER_RETURN_NOTIFY (1 << TIF_USER_RETURN_NOTIFY)
|
uprobes/core: Handle breakpoint and singlestep exceptions
Uprobes uses exception notifiers to get to know if a thread hit
a breakpoint or a singlestep exception.
When a thread hits a uprobe or is singlestepping post a uprobe
hit, the uprobe exception notifier sets its TIF_UPROBE bit,
which will then be checked on its return to userspace path
(do_notify_resume() ->uprobe_notify_resume()), where the
consumers handlers are run (in task context) based on the
defined filters.
Uprobe hits are thread specific and hence we need to maintain
information about if a task hit a uprobe, what uprobe was hit,
the slot where the original instruction was copied for xol so
that it can be singlestepped with appropriate fixups.
In some cases, special care is needed for instructions that are
executed out of line (xol). These are architecture specific
artefacts, such as handling RIP relative instructions on x86_64.
Since the instruction at which the uprobe was inserted is
executed out of line, architecture specific fixups are added so
that the thread continues normal execution in the presence of a
uprobe.
Postpone the signals until we execute the probed insn.
post_xol() path does a recalc_sigpending() before return to
user-mode, this ensures the signal can't be lost.
Uprobes relies on DIE_DEBUG notification to notify if a
singlestep is complete.
Adds x86 specific uprobe exception notifiers and appropriate
hooks needed to determine a uprobe hit and subsequent post
processing.
Add requisite x86 fixups for xol for uprobes. Specific cases
needing fixups include relative jumps (x86_64), calls, etc.
Where possible, we check and skip singlestepping the
breakpointed instructions. For now we skip single byte as well
as few multibyte nop instructions. However this can be extended
to other instructions too.
Credits to Oleg Nesterov for suggestions/patches related to
signal, breakpoint, singlestep handling code.
Signed-off-by: Srikar Dronamraju <srikar@linux.vnet.ibm.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
Cc: Jim Keniston <jkenisto@linux.vnet.ibm.com>
Cc: Linux-mm <linux-mm@kvack.org>
Cc: Oleg Nesterov <oleg@redhat.com>
Cc: Andi Kleen <andi@firstfloor.org>
Cc: Christoph Hellwig <hch@infradead.org>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Arnaldo Carvalho de Melo <acme@infradead.org>
Cc: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/20120313180011.29771.89027.sendpatchset@srdronam.in.ibm.com
[ Performed various cleanliness edits ]
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2012-03-13 18:00:11 +00:00
|
|
|
#define _TIF_UPROBE (1 << TIF_UPROBE)
|
2008-04-29 01:52:38 +00:00
|
|
|
#define _TIF_NOTSC (1 << TIF_NOTSC)
|
|
|
|
#define _TIF_IA32 (1 << TIF_IA32)
|
|
|
|
#define _TIF_FORK (1 << TIF_FORK)
|
2012-07-11 18:26:34 +00:00
|
|
|
#define _TIF_NOHZ (1 << TIF_NOHZ)
|
2014-04-11 07:59:05 +00:00
|
|
|
#define _TIF_POLLING_NRFLAG (1 << TIF_POLLING_NRFLAG)
|
2008-04-29 01:52:38 +00:00
|
|
|
#define _TIF_IO_BITMAP (1 << TIF_IO_BITMAP)
|
|
|
|
#define _TIF_FORCED_TF (1 << TIF_FORCED_TF)
|
2010-03-25 13:51:51 +00:00
|
|
|
#define _TIF_BLOCKSTEP (1 << TIF_BLOCKSTEP)
|
2009-02-18 07:46:21 +00:00
|
|
|
#define _TIF_LAZY_MMU_UPDATES (1 << TIF_LAZY_MMU_UPDATES)
|
2009-08-24 21:43:11 +00:00
|
|
|
#define _TIF_SYSCALL_TRACEPOINT (1 << TIF_SYSCALL_TRACEPOINT)
|
2012-02-06 21:03:09 +00:00
|
|
|
#define _TIF_ADDR32 (1 << TIF_ADDR32)
|
2012-02-14 21:56:49 +00:00
|
|
|
#define _TIF_X32 (1 << TIF_X32)
|
2008-04-29 01:52:38 +00:00
|
|
|
|
2008-07-09 09:38:07 +00:00
|
|
|
/* work to do in syscall_trace_enter() */
|
|
|
|
#define _TIF_WORK_SYSCALL_ENTRY \
|
2009-08-24 21:43:11 +00:00
|
|
|
(_TIF_SYSCALL_TRACE | _TIF_SYSCALL_EMU | _TIF_SYSCALL_AUDIT | \
|
2012-07-11 18:26:34 +00:00
|
|
|
_TIF_SECCOMP | _TIF_SINGLESTEP | _TIF_SYSCALL_TRACEPOINT | \
|
|
|
|
_TIF_NOHZ)
|
2008-07-09 09:38:07 +00:00
|
|
|
|
|
|
|
/* work to do in syscall_trace_leave() */
|
|
|
|
#define _TIF_WORK_SYSCALL_EXIT \
|
2009-03-07 04:53:00 +00:00
|
|
|
(_TIF_SYSCALL_TRACE | _TIF_SYSCALL_AUDIT | _TIF_SINGLESTEP | \
|
2012-07-11 18:26:34 +00:00
|
|
|
_TIF_SYSCALL_TRACEPOINT | _TIF_NOHZ)
|
2008-07-09 09:38:07 +00:00
|
|
|
|
2008-04-29 01:52:39 +00:00
|
|
|
/* work to do on interrupt/exception return */
|
|
|
|
#define _TIF_WORK_MASK \
|
|
|
|
(0x0000FFFF & \
|
2008-07-09 08:33:14 +00:00
|
|
|
~(_TIF_SYSCALL_TRACE|_TIF_SYSCALL_AUDIT| \
|
2008-07-09 09:38:07 +00:00
|
|
|
_TIF_SINGLESTEP|_TIF_SECCOMP|_TIF_SYSCALL_EMU))
|
2008-04-29 01:52:39 +00:00
|
|
|
|
|
|
|
/* work to do on any return to user space */
|
2009-08-24 21:43:11 +00:00
|
|
|
#define _TIF_ALLWORK_MASK \
|
2012-07-11 18:26:34 +00:00
|
|
|
((0x0000FFFF & ~_TIF_SECCOMP) | _TIF_SYSCALL_TRACEPOINT | \
|
|
|
|
_TIF_NOHZ)
|
2008-04-29 01:52:39 +00:00
|
|
|
|
2008-04-29 01:52:40 +00:00
|
|
|
/* Only used for 64 bit */
|
2008-04-29 01:52:39 +00:00
|
|
|
#define _TIF_DO_NOTIFY_MASK \
|
2009-09-19 06:40:22 +00:00
|
|
|
(_TIF_SIGPENDING | _TIF_MCE_NOTIFY | _TIF_NOTIFY_RESUME | \
|
2014-11-21 21:26:07 +00:00
|
|
|
_TIF_USER_RETURN_NOTIFY | _TIF_UPROBE)
|
2008-04-29 01:52:39 +00:00
|
|
|
|
|
|
|
/* flags to check in __switch_to() */
|
|
|
|
#define _TIF_WORK_CTXSW \
|
2010-03-25 13:51:51 +00:00
|
|
|
(_TIF_IO_BITMAP|_TIF_NOTSC|_TIF_BLOCKSTEP)
|
2008-04-29 01:52:39 +00:00
|
|
|
|
2009-09-19 06:40:22 +00:00
|
|
|
#define _TIF_WORK_CTXSW_PREV (_TIF_WORK_CTXSW|_TIF_USER_RETURN_NOTIFY)
|
2013-07-03 22:08:11 +00:00
|
|
|
#define _TIF_WORK_CTXSW_NEXT (_TIF_WORK_CTXSW)
|
2008-04-29 01:52:39 +00:00
|
|
|
|
2014-02-06 14:41:31 +00:00
|
|
|
#define STACK_WARN (THREAD_SIZE/8)
|
|
|
|
#define KERNEL_STACK_OFFSET (5*(BITS_PER_LONG/8))
|
2008-04-29 01:52:40 +00:00
|
|
|
|
2008-05-12 13:43:41 +00:00
|
|
|
/*
|
|
|
|
* macros/functions for gaining access to the thread information structure
|
|
|
|
*
|
|
|
|
* preempt_count needs to be 1 initially, until the scheduler is functional.
|
|
|
|
*/
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
|
2009-01-18 15:38:58 +00:00
|
|
|
DECLARE_PER_CPU(unsigned long, kernel_stack);
|
2008-05-12 13:43:41 +00:00
|
|
|
|
2009-01-18 15:38:58 +00:00
|
|
|
static inline struct thread_info *current_thread_info(void)
|
2008-05-12 13:43:41 +00:00
|
|
|
{
|
|
|
|
struct thread_info *ti;
|
2012-05-11 07:35:27 +00:00
|
|
|
ti = (void *)(this_cpu_read_stable(kernel_stack) +
|
2009-01-18 15:38:58 +00:00
|
|
|
KERNEL_STACK_OFFSET - THREAD_SIZE);
|
2008-05-12 13:43:41 +00:00
|
|
|
return ti;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else /* !__ASSEMBLY__ */
|
|
|
|
|
|
|
|
/* how to get the thread information struct from ASM */
|
|
|
|
#define GET_THREAD_INFO(reg) \
|
2014-02-06 14:41:31 +00:00
|
|
|
_ASM_MOV PER_CPU_VAR(kernel_stack),reg ; \
|
|
|
|
_ASM_SUB $(THREAD_SIZE-KERNEL_STACK_OFFSET),reg ;
|
2008-05-12 13:43:41 +00:00
|
|
|
|
2011-11-29 11:17:45 +00:00
|
|
|
/*
|
|
|
|
* Same if PER_CPU_VAR(kernel_stack) is, perhaps with some offset, already in
|
|
|
|
* a certain register (to be used in assembler memory operands).
|
|
|
|
*/
|
|
|
|
#define THREAD_INFO(reg, off) KERNEL_STACK_OFFSET+(off)-THREAD_SIZE(reg)
|
|
|
|
|
2008-05-12 13:43:41 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Thread-synchronous status.
|
|
|
|
*
|
|
|
|
* This is different from the flags in that nobody else
|
|
|
|
* ever touches our thread-synchronous status, so we don't
|
|
|
|
* have to worry about atomic accesses.
|
|
|
|
*/
|
2008-04-29 01:52:34 +00:00
|
|
|
#define TS_COMPAT 0x0002 /* 32bit syscall active (64BIT)*/
|
2008-04-30 20:13:44 +00:00
|
|
|
#define TS_RESTORE_SIGMASK 0x0008 /* restore signal mask in do_signal() */
|
2008-05-12 13:43:41 +00:00
|
|
|
|
2008-04-30 20:13:44 +00:00
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
#define HAVE_SET_RESTORE_SIGMASK 1
|
|
|
|
static inline void set_restore_sigmask(void)
|
|
|
|
{
|
|
|
|
struct thread_info *ti = current_thread_info();
|
|
|
|
ti->status |= TS_RESTORE_SIGMASK;
|
2012-04-27 17:42:45 +00:00
|
|
|
WARN_ON(!test_bit(TIF_SIGPENDING, (unsigned long *)&ti->flags));
|
2008-04-30 20:13:44 +00:00
|
|
|
}
|
2012-04-27 02:29:20 +00:00
|
|
|
static inline void clear_restore_sigmask(void)
|
|
|
|
{
|
|
|
|
current_thread_info()->status &= ~TS_RESTORE_SIGMASK;
|
|
|
|
}
|
|
|
|
static inline bool test_restore_sigmask(void)
|
|
|
|
{
|
|
|
|
return current_thread_info()->status & TS_RESTORE_SIGMASK;
|
|
|
|
}
|
|
|
|
static inline bool test_and_clear_restore_sigmask(void)
|
|
|
|
{
|
|
|
|
struct thread_info *ti = current_thread_info();
|
|
|
|
if (!(ti->status & TS_RESTORE_SIGMASK))
|
|
|
|
return false;
|
|
|
|
ti->status &= ~TS_RESTORE_SIGMASK;
|
|
|
|
return true;
|
|
|
|
}
|
2012-03-13 14:03:03 +00:00
|
|
|
|
|
|
|
static inline bool is_ia32_task(void)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_X86_32
|
|
|
|
return true;
|
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_IA32_EMULATION
|
|
|
|
if (current_thread_info()->status & TS_COMPAT)
|
|
|
|
return true;
|
|
|
|
#endif
|
|
|
|
return false;
|
|
|
|
}
|
2008-04-30 20:13:44 +00:00
|
|
|
#endif /* !__ASSEMBLY__ */
|
|
|
|
|
2008-03-10 22:28:04 +00:00
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
extern void arch_task_cache_init(void);
|
|
|
|
extern int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src);
|
2012-05-05 15:05:42 +00:00
|
|
|
extern void arch_release_task_struct(struct task_struct *tsk);
|
2008-03-10 22:28:04 +00:00
|
|
|
#endif
|
2008-10-23 05:26:29 +00:00
|
|
|
#endif /* _ASM_X86_THREAD_INFO_H */
|