summaryrefslogtreecommitdiffstats
path: root/arch/sparc/include/asm/thread_info_32.h
diff options
context:
space:
mode:
authorRichard Weinberger <richard@nod.at>2014-07-13 17:39:47 +0200
committerRichard Weinberger <richard@nod.at>2015-04-12 21:03:21 +0200
commit14464772c95d351e802b7f07c1860d9e5bf2cafc (patch)
tree4f65f5cf89e1dd3f1fc7408d2e0beaffc6325355 /arch/sparc/include/asm/thread_info_32.h
parentdaea906dd31843edc062faba82cd43c8b720305d (diff)
downloadop-kernel-dev-14464772c95d351e802b7f07c1860d9e5bf2cafc.zip
op-kernel-dev-14464772c95d351e802b7f07c1860d9e5bf2cafc.tar.gz
sparc: Remove signal translation and exec_domain
As execution domain support is gone we can remove signal translation from the signal code and remove exec_domain from thread_info. Signed-off-by: Richard Weinberger <richard@nod.at> Acked-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc/include/asm/thread_info_32.h')
-rw-r--r--arch/sparc/include/asm/thread_info_32.h27
1 files changed, 12 insertions, 15 deletions
diff --git a/arch/sparc/include/asm/thread_info_32.h b/arch/sparc/include/asm/thread_info_32.h
index fd7bd0a..a7a1814 100644
--- a/arch/sparc/include/asm/thread_info_32.h
+++ b/arch/sparc/include/asm/thread_info_32.h
@@ -27,7 +27,6 @@
struct thread_info {
unsigned long uwinmask;
struct task_struct *task; /* main task structure */
- struct exec_domain *exec_domain; /* execution domain */
unsigned long flags; /* low level flags */
int cpu; /* cpu we're on */
int preempt_count; /* 0 => preemptable,
@@ -56,7 +55,6 @@ struct thread_info {
{ \
.uwinmask = 0, \
.task = &tsk, \
- .exec_domain = &default_exec_domain, \
.flags = 0, \
.cpu = 0, \
.preempt_count = INIT_PREEMPT_COUNT, \
@@ -85,19 +83,18 @@ register struct thread_info *current_thread_info_reg asm("g6");
*/
#define TI_UWINMASK 0x00 /* uwinmask */
#define TI_TASK 0x04
-#define TI_EXECDOMAIN 0x08 /* exec_domain */
-#define TI_FLAGS 0x0c
-#define TI_CPU 0x10
-#define TI_PREEMPT 0x14 /* preempt_count */
-#define TI_SOFTIRQ 0x18 /* softirq_count */
-#define TI_HARDIRQ 0x1c /* hardirq_count */
-#define TI_KSP 0x20 /* ksp */
-#define TI_KPC 0x24 /* kpc (ldd'ed with kpc) */
-#define TI_KPSR 0x28 /* kpsr */
-#define TI_KWIM 0x2c /* kwim (ldd'ed with kpsr) */
-#define TI_REG_WINDOW 0x30
-#define TI_RWIN_SPTRS 0x230
-#define TI_W_SAVED 0x250
+#define TI_FLAGS 0x08
+#define TI_CPU 0x0c
+#define TI_PREEMPT 0x10 /* preempt_count */
+#define TI_SOFTIRQ 0x14 /* softirq_count */
+#define TI_HARDIRQ 0x18 /* hardirq_count */
+#define TI_KSP 0x1c /* ksp */
+#define TI_KPC 0x20 /* kpc (ldd'ed with kpc) */
+#define TI_KPSR 0x24 /* kpsr */
+#define TI_KWIM 0x28 /* kwim (ldd'ed with kpsr) */
+#define TI_REG_WINDOW 0x2c
+#define TI_RWIN_SPTRS 0x22c
+#define TI_W_SAVED 0x24c
/*
* thread information flag bit numbers
OpenPOWER on IntegriCloud