Re: [patch] sched-2.6.0-test1-G3

From: Con Kolivas (kernel@kolivas.org)
Date: Fri Jul 25 2003 - 20:56:32 EST


Ingo

With this section of your patch:

+ if (!(p->time_slice % TIMESLICE_GRANULARITY) &&

that would requeue active tasks a variable duration into their running time
dependent on their task timeslice rather than every 50ms. Shouldn't it be:

+ if (!((task_timeslice(p) - p->time_slice) % TIMESLICE_GRANULARITY) &&

to ensure it is TIMESLICE_GRANULARITY into the timeslice of a process?

Con

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Thu Jul 31 2003 - 22:00:27 EST