diff for duplicates of <20070310081743.GC23144@Krystal> diff --git a/a/1.txt b/N1/1.txt index 4e487b4..4eb1088 100644 --- a/a/1.txt +++ b/N1/1.txt @@ -12,7 +12,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_ti_thread_flag(current_thread_info(), TIF_USEDFPU)) { @@ -30,7 +30,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_ti_thread_flag(current_thread_info(), TIF_USEDFPU)) { @@ -48,7 +48,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_ti_thread_flag(current_thread_info(), TIF_USEDFPU)) { diff --git a/a/content_digest b/N1/content_digest index f483907..de00cb9 100644 --- a/a/content_digest +++ b/N1/content_digest @@ -1,7 +1,6 @@ - "ref\020070309031227.GC9462@Krystal\0" "From\0Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>\0" "Subject\0[PATCH] Fix sparc TIF_USEDFPU flag atomicity\0" - "Date\0Sat, 10 Mar 2007 08:17:43 +0000\0" + "Date\0Sat, 10 Mar 2007 03:17:43 -0500\0" "To\0akpm@linux-foundation.org" mbligh@google.com linux-kernel@vger.kernel.org @@ -23,7 +22,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_ti_thread_flag(current_thread_info(), TIF_USEDFPU)) {\n" @@ -41,7 +40,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_ti_thread_flag(current_thread_info(), TIF_USEDFPU)) {\n" @@ -59,7 +58,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_ti_thread_flag(current_thread_info(), TIF_USEDFPU)) {\n" @@ -126,4 +125,4 @@ "Computer Engineering Ph.D. Student, Ecole Polytechnique de Montreal\n" OpenPGP key fingerprint: 8CD5 52C3 8E3C 4140 715F BA06 3F25 A8FE 3BAE 9A68 -d073f9bfd16941e688f0bf91b3baf370142adaf4503f8613c48b4704f59a3b24 +ee85b5d61d756180b9157fb05be04184b9ae21dc2c4448ada883d616fe6a9348
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.