| To: | linux-mips@linux-mips.org |
|---|---|
| Subject: | [pathch] kernel/sched.c bogon? |
| From: | "Kip Walker" <kwalker@broadcom.com> |
| Date: | Thu, 06 Mar 2003 17:01:24 -0800 |
| Organization: | Broadcom Corp. BPBU |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| Sender: | linux-mips-bounce@linux-mips.org |
The comparisons of oldest_idle below trigger compiler warnings and
should probably be safely type-cast:
Kip
Index: kernel/sched.c
===================================================================
RCS file: /home/cvs/linux/kernel/sched.c,v
retrieving revision 1.64.2.6
diff -u -r1.64.2.6 sched.c
--- kernel/sched.c 25 Feb 2003 22:03:13 -0000 1.64.2.6
+++ kernel/sched.c 7 Mar 2003 00:57:35 -0000
@@ -282,7 +282,7 @@
target_tsk = tsk;
}
} else {
- if (oldest_idle == -1ULL) {
+ if (oldest_idle == (cycles_t) -1) {
int prio = preemption_goodness(tsk, p,
cpu);
if (prio > max_prio) {
@@ -294,7 +294,7 @@
}
tsk = target_tsk;
if (tsk) {
- if (oldest_idle != -1ULL) {
+ if (oldest_idle != (cycles_t) -1) {
best_cpu = tsk->processor;
goto send_now_idle;
}
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: static variables access and gp, Jun Sun |
|---|---|
| Next by Date: | Re: [pathch] kernel/sched.c bogon?, Jun Sun |
| Previous by Thread: | gnu tool-chain support for mips16?, jackson |
| Next by Thread: | Re: [pathch] kernel/sched.c bogon?, Jun Sun |
| Indexes: | [Date] [Thread] [Top] [All Lists] |