mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] 2.4-ac: sched.c compile fix
@ 2002-05-13 16:30 Robert Love
  0 siblings, 0 replies; only message in thread
From: Robert Love @ 2002-05-13 16:30 UTC (permalink / raw)
  To: alan; +Cc: linux-kernel

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

Alan,

This fixes the compile error under SMP for 2.4.19-pre8-ac2 in sched.c
due to the latest scheduling changes.

I do not know how I missed this - much apologies.  Please apply.

	Robert Love




[-- Attachment #2: sched-compile-fix-rml-2.4.19-pre8-ac2-1.patch --]
[-- Type: text/x-patch, Size: 786 bytes --]

diff -urN linux-2.4.19-pre8-ac2/kernel/sched.c linux/kernel/sched.c
--- linux-2.4.19-pre8-ac2/kernel/sched.c	Mon May 13 09:15:12 2002
+++ linux/kernel/sched.c	Mon May 13 09:19:32 2002
@@ -1592,18 +1592,18 @@
 		cpu_dest = __ffs(p->cpus_allowed);
 		rq_dest = cpu_rq(cpu_dest);
 repeat:
-		cpu_src = p->thread_info->cpu;
+		cpu_src = p->cpu;
 		rq_src = cpu_rq(cpu_src);
 
 		local_irq_save(flags);
 		double_rq_lock(rq_src, rq_dest);
-		if (p->thread_info->cpu != cpu_src) {
+		if (p->cpu != cpu_src) {
 			double_rq_unlock(rq_src, rq_dest);
 			local_irq_restore(flags);
 			goto repeat;
 		}
 		if (rq_src == rq) {
-			p->thread_info->cpu = cpu_dest;
+			p->cpu = cpu_dest;
 			if (p->array) {
 				deactivate_task(p, rq_src);
 				activate_task(p, rq_dest);

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2002-05-13 16:31 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-05-13 16:30 [PATCH] 2.4-ac: sched.c compile fix Robert Love

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®