All of lore.kernel.org
 help / color / mirror / Atom feed
* MIPS: Clear the correct flag in sysmips(MIPS_FIXADE, ...).
@ 2011-01-17  8:19 Stefan Oberhumer
  2011-01-24 19:17 ` Ralf Baechle
  0 siblings, 1 reply; 2+ messages in thread
From: Stefan Oberhumer @ 2011-01-17  8:19 UTC (permalink / raw)
  To: Ralf Baechle; +Cc: linux-mips

[-- Attachment #1: Type: text/plain, Size: 220 bytes --]


The sysmips(MIPS_FIXADE, ...) case contains an obvious copy-and-paste
error in the handling of the TIF_LOGADE flag. Fix that
---
 arch/mips/kernel/syscall.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)



[-- Attachment #2: 0001-MIPS-Clear-the-correct-flag-in-sysmips-MIPS_FIXADE.patch --]
[-- Type: text/x-patch, Size: 381 bytes --]

diff --git a/arch/mips/kernel/syscall.c b/arch/mips/kernel/syscall.c
index 1dc6edf..cde2a32 100644
--- a/arch/mips/kernel/syscall.c
+++ b/arch/mips/kernel/syscall.c
@@ -405,7 +405,7 @@ _sys_sysmips(nabi_no_regargs struct pt_regs regs)
 		if (arg1 & 2)
 			set_thread_flag(TIF_LOGADE);
 		else
-			clear_thread_flag(TIF_FIXADE);
+			clear_thread_flag(TIF_LOGADE);
 
 		return 0;
 


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-01-24 19:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-17  8:19 MIPS: Clear the correct flag in sysmips(MIPS_FIXADE, ...) Stefan Oberhumer
2011-01-24 19:17 ` Ralf Baechle

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.