2005-04-17 00:20:36 +02:00
|
|
|
/* thread_info.h: x86_64 low-level thread information
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 David Howells (dhowells@redhat.com)
|
|
|
|
* - Incorporating suggestions made by Linus Torvalds and Dave Miller
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ASM_THREAD_INFO_H
|
|
|
|
#define _ASM_THREAD_INFO_H
|
|
|
|
|
|
|
|
#ifdef __KERNEL__
|
|
|
|
|
|
|
|
#include <asm/page.h>
|
|
|
|
#include <asm/types.h>
|
|
|
|
#include <asm/pda.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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__
|
|
|
|
struct task_struct;
|
|
|
|
struct exec_domain;
|
2008-01-30 13:31:38 +01:00
|
|
|
#include <asm/processor.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
struct thread_info {
|
|
|
|
struct task_struct *task; /* main task structure */
|
|
|
|
struct exec_domain *exec_domain; /* execution domain */
|
|
|
|
__u32 flags; /* low level flags */
|
|
|
|
__u32 status; /* thread synchronous flags */
|
|
|
|
__u32 cpu; /* current CPU */
|
2008-03-23 09:03:43 +01:00
|
|
|
int preempt_count; /* 0 => preemptable,
|
|
|
|
<0 => BUG */
|
|
|
|
mm_segment_t addr_limit;
|
2005-04-17 00:20:36 +02:00
|
|
|
struct restart_block restart_block;
|
2008-01-30 13:30:43 +01:00
|
|
|
#ifdef CONFIG_IA32_EMULATION
|
|
|
|
void __user *sysenter_return;
|
|
|
|
#endif
|
2005-04-17 00:20:36 +02:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* macros/functions for gaining access to the thread information structure
|
|
|
|
* preempt_count needs to be 1 initially, until the scheduler is functional.
|
|
|
|
*/
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
#define INIT_THREAD_INFO(tsk) \
|
|
|
|
{ \
|
|
|
|
.task = &tsk, \
|
|
|
|
.exec_domain = &default_exec_domain, \
|
|
|
|
.flags = 0, \
|
|
|
|
.cpu = 0, \
|
|
|
|
.preempt_count = 1, \
|
|
|
|
.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)
|
|
|
|
|
|
|
|
static inline struct thread_info *current_thread_info(void)
|
2008-03-23 09:03:43 +01:00
|
|
|
{
|
2005-04-17 00:20:36 +02:00
|
|
|
struct thread_info *ti;
|
|
|
|
ti = (void *)(read_pda(kernelstack) + PDA_STACKOFFSET - THREAD_SIZE);
|
2008-03-23 09:03:43 +01:00
|
|
|
return ti;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* do not use in interrupt context */
|
|
|
|
static inline struct thread_info *stack_thread_info(void)
|
|
|
|
{
|
|
|
|
struct thread_info *ti;
|
2008-03-23 09:03:43 +01:00
|
|
|
asm("andq %%rsp,%0; " : "=r" (ti) : "0" (~(THREAD_SIZE - 1)));
|
2005-04-17 00:20:36 +02:00
|
|
|
return ti;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* thread information allocation */
|
2006-06-26 14:00:08 +02:00
|
|
|
#ifdef CONFIG_DEBUG_STACK_USAGE
|
2008-01-30 13:30:32 +01:00
|
|
|
#define THREAD_FLAGS (GFP_KERNEL | __GFP_ZERO)
|
2006-06-26 14:00:08 +02:00
|
|
|
#else
|
2008-01-30 13:30:32 +01:00
|
|
|
#define THREAD_FLAGS GFP_KERNEL
|
2006-06-26 14:00:08 +02:00
|
|
|
#endif
|
2008-01-30 13:30:32 +01:00
|
|
|
|
2008-03-23 09:03:43 +01:00
|
|
|
#define alloc_thread_info(tsk) \
|
|
|
|
((struct thread_info *)__get_free_pages(THREAD_FLAGS, THREAD_ORDER))
|
2006-06-26 14:00:08 +02:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#else /* !__ASSEMBLY__ */
|
|
|
|
|
|
|
|
/* how to get the thread information struct from ASM */
|
|
|
|
#define GET_THREAD_INFO(reg) \
|
|
|
|
movq %gs:pda_kernelstack,reg ; \
|
|
|
|
subq $(THREAD_SIZE-PDA_STACKOFFSET),reg
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* thread information flags
|
2008-03-23 09:03:43 +01:00
|
|
|
* - these are process state flags that various assembly files
|
|
|
|
* may need to access
|
2005-04-17 00:20:36 +02:00
|
|
|
* - 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 */
|
|
|
|
#define TIF_SIGPENDING 2 /* signal pending */
|
|
|
|
#define TIF_NEED_RESCHED 3 /* rescheduling necessary */
|
|
|
|
#define TIF_SINGLESTEP 4 /* reenable singlestep on user return*/
|
|
|
|
#define TIF_IRET 5 /* force IRET */
|
|
|
|
#define TIF_SYSCALL_AUDIT 7 /* syscall auditing active */
|
|
|
|
#define TIF_SECCOMP 8 /* secure computing */
|
x86_64: support poll() on /dev/mcelog
Background:
/dev/mcelog is typically polled manually. This is less than optimal for
situations where accurate accounting of MCEs is important. Calling
poll() on /dev/mcelog does not work.
Description:
This patch adds support for poll() to /dev/mcelog. This results in
immediate wakeup of user apps whenever the poller finds MCEs. Because
the exception handler can not take any locks, it can not call the wakeup
itself. Instead, it uses a thread_info flag (TIF_MCE_NOTIFY) which is
caught at the next return from interrupt or exit from idle, calling the
mce_user_notify() routine. This patch also disables the "fake panic"
path of the mce_panic(), because it results in printk()s in the exception
handler and crashy systems.
This patch also does some small cleanup for essentially unused variables,
and moves the user notification into the body of the poller, so it is
only called once per poll, rather than once per CPU.
Result:
Applications can now poll() on /dev/mcelog. When an error is logged
(whether through the poller or through an exception) the applications are
woken up promptly. This should not affect any previous behaviors. If no
MCEs are being logged, there is no overhead.
Alternatives:
I considered simply supporting poll() through the poller and not using
TIF_MCE_NOTIFY at all. However, the time between an uncorrectable error
happening and the user application being notified is *the*most* critical
window for us. Many uncorrectable errors can be logged to the network if
given a chance.
I also considered doing the MCE poll directly from the idle notifier, but
decided that was overkill.
Testing:
I used an error-injecting DIMM to create lots of correctable DRAM errors
and verified that my user app is woken up in sync with the polling interval.
I also used the northbridge to inject uncorrectable ECC errors, and
verified (printk() to the rescue) that the notify routine is called and the
user app does wake up. I built with PREEMPT on and off, and verified
that my machine survives MCEs.
[wli@holomorphy.com: build fix]
Signed-off-by: Tim Hockin <thockin@google.com>
Signed-off-by: William Irwin <bill.irwin@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-07-21 17:10:36 +02:00
|
|
|
#define TIF_MCE_NOTIFY 10 /* notify userspace of an MCE */
|
2008-01-25 21:08:29 +01:00
|
|
|
#define TIF_HRTICK_RESCHED 11 /* reprogram hrtick timer */
|
2006-06-26 13:59:11 +02:00
|
|
|
/* 16 free */
|
2008-03-23 09:03:43 +01:00
|
|
|
#define TIF_IA32 17 /* 32bit process */
|
2005-04-17 00:20:36 +02:00
|
|
|
#define TIF_FORK 18 /* ret_from_fork */
|
|
|
|
#define TIF_ABI_PENDING 19
|
|
|
|
#define TIF_MEMDIE 20
|
2006-09-26 10:52:28 +02:00
|
|
|
#define TIF_DEBUG 21 /* uses debug registers */
|
|
|
|
#define TIF_IO_BITMAP 22 /* uses I/O bitmap */
|
2006-12-13 09:34:30 +01:00
|
|
|
#define TIF_FREEZE 23 /* is freezing for suspend */
|
2008-01-30 13:30:50 +01:00
|
|
|
#define TIF_FORCED_TF 24 /* true if TF in eflags artificially */
|
2008-01-30 13:30:54 +01:00
|
|
|
#define TIF_DEBUGCTLMSR 25 /* uses thread_struct.debugctlmsr */
|
2008-01-30 23:27:57 +01:00
|
|
|
#define TIF_DS_AREA_MSR 26 /* uses thread_struct.ds_area_msr */
|
|
|
|
#define TIF_BTS_TRACE_TS 27 /* record scheduling event timestamps */
|
2008-04-14 00:24:18 +02:00
|
|
|
#define TIF_NOTSC 28 /* TSC is not accessible in userland */
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-03-23 09:03:43 +01:00
|
|
|
#define _TIF_SYSCALL_TRACE (1 << TIF_SYSCALL_TRACE)
|
|
|
|
#define _TIF_SIGPENDING (1 << TIF_SIGPENDING)
|
|
|
|
#define _TIF_SINGLESTEP (1 << TIF_SINGLESTEP)
|
|
|
|
#define _TIF_NEED_RESCHED (1 << TIF_NEED_RESCHED)
|
|
|
|
#define _TIF_IRET (1 << TIF_IRET)
|
|
|
|
#define _TIF_SYSCALL_AUDIT (1 << TIF_SYSCALL_AUDIT)
|
|
|
|
#define _TIF_SECCOMP (1 << TIF_SECCOMP)
|
|
|
|
#define _TIF_MCE_NOTIFY (1 << TIF_MCE_NOTIFY)
|
|
|
|
#define _TIF_HRTICK_RESCHED (1 << TIF_HRTICK_RESCHED)
|
|
|
|
#define _TIF_IA32 (1 << TIF_IA32)
|
|
|
|
#define _TIF_FORK (1 << TIF_FORK)
|
|
|
|
#define _TIF_ABI_PENDING (1 << TIF_ABI_PENDING)
|
|
|
|
#define _TIF_DEBUG (1 << TIF_DEBUG)
|
|
|
|
#define _TIF_IO_BITMAP (1 << TIF_IO_BITMAP)
|
|
|
|
#define _TIF_FREEZE (1 << TIF_FREEZE)
|
|
|
|
#define _TIF_FORCED_TF (1 << TIF_FORCED_TF)
|
|
|
|
#define _TIF_DEBUGCTLMSR (1 << TIF_DEBUGCTLMSR)
|
|
|
|
#define _TIF_DS_AREA_MSR (1 << TIF_DS_AREA_MSR)
|
|
|
|
#define _TIF_BTS_TRACE_TS (1 << TIF_BTS_TRACE_TS)
|
2008-04-14 00:24:18 +02:00
|
|
|
#define _TIF_NOTSC (1 << TIF_NOTSC)
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/* work to do on interrupt/exception return */
|
2008-03-23 09:03:43 +01:00
|
|
|
#define _TIF_WORK_MASK \
|
|
|
|
(0x0000FFFF & \
|
|
|
|
~(_TIF_SYSCALL_TRACE|_TIF_SYSCALL_AUDIT|_TIF_SINGLESTEP|_TIF_SECCOMP))
|
2005-04-17 00:20:36 +02:00
|
|
|
/* work to do on any return to user space */
|
|
|
|
#define _TIF_ALLWORK_MASK (0x0000FFFF & ~_TIF_SECCOMP)
|
|
|
|
|
2008-03-23 09:03:43 +01:00
|
|
|
#define _TIF_DO_NOTIFY_MASK \
|
2008-01-25 21:08:29 +01:00
|
|
|
(_TIF_SIGPENDING|_TIF_SINGLESTEP|_TIF_MCE_NOTIFY|_TIF_HRTICK_RESCHED)
|
|
|
|
|
2006-09-26 10:52:28 +02:00
|
|
|
/* flags to check in __switch_to() */
|
2008-03-23 09:03:43 +01:00
|
|
|
#define _TIF_WORK_CTXSW \
|
2008-04-14 00:24:18 +02:00
|
|
|
(_TIF_IO_BITMAP|_TIF_DEBUGCTLMSR|_TIF_DS_AREA_MSR|_TIF_BTS_TRACE_TS|_TIF_NOTSC)
|
2008-01-30 13:31:09 +01:00
|
|
|
#define _TIF_WORK_CTXSW_PREV _TIF_WORK_CTXSW
|
|
|
|
#define _TIF_WORK_CTXSW_NEXT (_TIF_WORK_CTXSW|_TIF_DEBUG)
|
2006-09-26 10:52:28 +02:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#define PREEMPT_ACTIVE 0x10000000
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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-03-23 09:03:43 +01:00
|
|
|
#define TS_USEDFPU 0x0001 /* FPU was used by this task
|
|
|
|
this quantum (SMP) */
|
2006-01-11 22:44:06 +01:00
|
|
|
#define TS_COMPAT 0x0002 /* 32bit syscall active */
|
2008-03-23 09:03:43 +01:00
|
|
|
#define TS_POLLING 0x0004 /* true if in idle loop
|
|
|
|
and not sleeping */
|
2008-04-30 09:53:10 +02:00
|
|
|
#define TS_RESTORE_SIGMASK 0x0008 /* restore signal mask in do_signal() */
|
2006-06-26 13:59:11 +02:00
|
|
|
|
2007-05-09 11:35:16 +02:00
|
|
|
#define tsk_is_polling(t) (task_thread_info(t)->status & TS_POLLING)
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-04-30 09:53:10 +02: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;
|
|
|
|
set_bit(TIF_SIGPENDING, &ti->flags);
|
|
|
|
}
|
|
|
|
#endif /* !__ASSEMBLY__ */
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#endif /* __KERNEL__ */
|
|
|
|
|
|
|
|
#endif /* _ASM_THREAD_INFO_H */
|