From: Ralf Baechle Date: Thu, 20 Dec 2012 14:49:36 +0000 (+0100) Subject: MIPS: Fix comment. X-Git-Tag: upstream/snapshot3+hdmi~5918^2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=02637b856c2b1ac9a721aeb1575c95068d125c72;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git MIPS: Fix comment. The value is incorrect and were copied in Linux 2.5.4 from i386. Signed-off-by: Ralf Baechle --- diff --git a/arch/mips/include/asm/thread_info.h b/arch/mips/include/asm/thread_info.h index 18806a5..b2050b9 100644 --- a/arch/mips/include/asm/thread_info.h +++ b/arch/mips/include/asm/thread_info.h @@ -29,10 +29,11 @@ struct thread_info { __u32 cpu; /* current CPU */ int preempt_count; /* 0 => preemptable, <0 => BUG */ - mm_segment_t addr_limit; /* thread address space: - 0-0xBFFFFFFF for user-thead - 0-0xFFFFFFFF for kernel-thread - */ + mm_segment_t addr_limit; /* + * thread address space limit: + * 0x7fffffff for user-thead + * 0xffffffff for kernel-thread + */ struct restart_block restart_block; struct pt_regs *regs; };