diff for duplicates of <20070309031227.GC9462@Krystal> diff --git a/a/1.txt b/N1/1.txt index 71a6b61..23bfbd3 100644 --- a/a/1.txt +++ b/N1/1.txt @@ -11,7 +11,7 @@ Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca> +++ b/arch/sparc/kernel/process.c @@ -348,7 +348,7 @@ void exit_thread(void) #ifndef CONFIG_SMP - if(last_task_used_math = current) { + if(last_task_used_math == current) { #else - if(current_thread_info()->flags & _TIF_USEDFPU) { + if(test_tsk_thread_flag(current, TIF_USEDFPU)) { @@ -29,7 +29,7 @@ Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca> } @@ -371,7 +371,7 @@ void flush_thread(void) #ifndef CONFIG_SMP - if(last_task_used_math = current) { + if(last_task_used_math == current) { #else - if(current_thread_info()->flags & _TIF_USEDFPU) { + if(test_tsk_thread_flag(current, TIF_USEDFPU)) { @@ -47,7 +47,7 @@ Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca> @@ -466,13 +466,13 @@ int copy_thread(int nr, unsigned long clone_flags, unsigned long sp, #ifndef CONFIG_SMP - if(last_task_used_math = current) { + if(last_task_used_math == current) { #else - if(current_thread_info()->flags & _TIF_USEDFPU) { + if(test_tsk_thread_flag(current, TIF_USEDFPU)) { diff --git a/a/content_digest b/N1/content_digest index b0be5f5..130ff9d 100644 --- a/a/content_digest +++ b/N1/content_digest @@ -1,6 +1,6 @@ "From\0Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>\0" "Subject\0[PATCH] Fix sparc TIF_USEDFPU flag atomicity\0" - "Date\0Fri, 09 Mar 2007 03:12:27 +0000\0" + "Date\0Thu, 8 Mar 2007 22:12:27 -0500\0" "To\0akpm@linux-foundation.org" mbligh@google.com linux-kernel@vger.kernel.org @@ -21,7 +21,7 @@ "+++ b/arch/sparc/kernel/process.c\n" "@@ -348,7 +348,7 @@ void exit_thread(void)\n" " #ifndef CONFIG_SMP\n" - " \tif(last_task_used_math = current) {\n" + " \tif(last_task_used_math == current) {\n" " #else\n" "-\tif(current_thread_info()->flags & _TIF_USEDFPU) {\n" "+\tif(test_tsk_thread_flag(current, TIF_USEDFPU)) {\n" @@ -39,7 +39,7 @@ " }\n" "@@ -371,7 +371,7 @@ void flush_thread(void)\n" " #ifndef CONFIG_SMP\n" - " \tif(last_task_used_math = current) {\n" + " \tif(last_task_used_math == current) {\n" " #else\n" "-\tif(current_thread_info()->flags & _TIF_USEDFPU) {\n" "+\tif(test_tsk_thread_flag(current, TIF_USEDFPU)) {\n" @@ -57,7 +57,7 @@ " \n" "@@ -466,13 +466,13 @@ int copy_thread(int nr, unsigned long clone_flags, unsigned long sp,\n" " #ifndef CONFIG_SMP\n" - " \tif(last_task_used_math = current) {\n" + " \tif(last_task_used_math == current) {\n" " #else\n" "-\tif(current_thread_info()->flags & _TIF_USEDFPU) {\n" "+\tif(test_tsk_thread_flag(current, TIF_USEDFPU)) {\n" @@ -123,4 +123,4 @@ "Computer Engineering Ph.D. Student, Ecole Polytechnique de Montreal\n" OpenPGP key fingerprint: 8CD5 52C3 8E3C 4140 715F BA06 3F25 A8FE 3BAE 9A68 -84f057966924e5cfdf8254b8182169b012cf66f472fcfefccaa4bfb7ba6e1251 +0089134eaea534b07628b60a6997e59dfa3a3c1aeed1b03241d05d896d64b195
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.