]> Pileus Git - ~andy/linux/commitdiff
MIPS: Remove leftovers from the IRIX binary compat code.
authorRalf Baechle <ralf@linux-mips.org>
Fri, 2 Nov 2012 14:38:34 +0000 (15:38 +0100)
committerRalf Baechle <ralf@linux-mips.org>
Wed, 12 Dec 2012 15:52:07 +0000 (16:52 +0100)
2957c9e61ee9c37e7ebf2c8acab03e073fe942fd (kernel.org) rsp.
b934da913f236bca00c41d9e386e980586000461 (lmo) [[MIPS] IRIX: Goodbye and
thanks for all the fish] left two fields in struct thread_struct which
were only being used for the IRIX compat code.  Remove them.

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/include/asm/processor.h
arch/mips/kernel/asm-offsets.c

index 5e33fabe354de7e12e11dc4f64aa5d0be7464090..8481c1a5219e53fada0b343ca4219fa414fa81d2 100644 (file)
@@ -226,8 +226,6 @@ struct thread_struct {
        unsigned long cp0_badvaddr;     /* Last user fault */
        unsigned long cp0_baduaddr;     /* Last kernel fault accessing USEG */
        unsigned long error_code;
-       unsigned long irix_trampoline;  /* Wheee... */
-       unsigned long irix_oldctx;
 #ifdef CONFIG_CPU_CAVIUM_OCTEON
     struct octeon_cop2_state cp2 __attribute__ ((__aligned__(128)));
     struct octeon_cvmseg_state cvmseg __attribute__ ((__aligned__(128)));
@@ -297,8 +295,6 @@ struct thread_struct {
        .cp0_badvaddr           = 0,                            \
        .cp0_baduaddr           = 0,                            \
        .error_code             = 0,                            \
-       .irix_trampoline        = 0,                            \
-       .irix_oldctx            = 0,                            \
        /*                                                      \
         * Cavium Octeon specifics (null if not Octeon)         \
         */                                                     \
index 0c4bce4882a6621d18ff0450b3f464e3722059b6..9690998d4ef3e9e99b5628cbb4bf297c90158a10 100644 (file)
@@ -125,10 +125,6 @@ void output_thread_defines(void)
               thread.cp0_baduaddr);
        OFFSET(THREAD_ECODE, task_struct, \
               thread.error_code);
-       OFFSET(THREAD_TRAMP, task_struct, \
-              thread.irix_trampoline);
-       OFFSET(THREAD_OLDCTX, task_struct, \
-              thread.irix_oldctx);
        BLANK();
 }