Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754821AbZJ2UBd (ORCPT ); Thu, 29 Oct 2009 16:01:33 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754164AbZJ2UBc (ORCPT ); Thu, 29 Oct 2009 16:01:32 -0400 Received: from zrtps0kp.nortel.com ([47.140.192.56]:49138 "EHLO zrtps0kp.nortel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753661AbZJ2UBc (ORCPT ); Thu, 29 Oct 2009 16:01:32 -0400 Message-ID: <4AE9F3D2.8030502@nortel.com> Date: Thu, 29 Oct 2009 13:58:10 -0600 From: "Chris Friesen" User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.4pre) Gecko/20090922 Fedora/3.0-2.7.b4.fc11 Thunderbird/3.0b4 MIME-Version: 1.0 To: Daniel Rodrick CC: Linux Newbie , Kernel Newbies , linux-kernel@vger.kernel.org Subject: Re: Questions about linux scheduler References: <292693080910290808x69f25f6fgc49cb646c1c00466@mail.gmail.com> In-Reply-To: <292693080910290808x69f25f6fgc49cb646c1c00466@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 29 Oct 2009 20:01:32.0130 (UTC) FILETIME=[9C400C20:01CA58D2] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2287 Lines: 62 On 10/29/2009 09:08 AM, Daniel Rodrick wrote: > Hi list, > > I'm following the Robert Love's book and am trying to understand the > Linux O(1) scheduler. The details of Rob Love's book are now out of date and no longer applicable to the current scheduler. Some of the overall concepts are still applicable though. > So here is my understanding. The kernel allows > the applications to specify two types of priorities > > * Realtime Priorities: Range from 0 to 99 Actually, 1 to 99. > * Non-realtime priorities: Also called "nice" values range from -20 to +19. > > (The above are mutually exclusive) Correct. > Over all Scheduling algo > ================= > * A total of 140 priorities (100 RT + 40 non-RT) - these priorities > are static - do not change over time. So far so good. > * A lower priority process will run only if there are no runnable > processes in priority above it - this automatically means that all RT > processes get to run before non-RT processes. True for RT, not true for non-RT. In the current scheduler the non-RT tasks are stored in a time-ordered structure rather than the 40 runqueues that were used before. A non-RT task will run once it becomes the most "urgent" task based on its nice level, how much cpu time it uses, and how long it's been since it ran last relative to other tasks on the system. > * tasks on the same priority level are scheduled round robin True for RT. For non-RT, tasks of other nice levels may be interleaved depending on how much cpu time they've been using. > Is my above understanding correct? Where my understanding doesn't fit > is the conncept of dynamic timeslice calculation. IMHO, the dynamic > timeslice calculation applies only to Non-RT processes, right? Because > a higher priority RT process should always get to run. With the new scheduler I think it's fair to say that non-RT tasks don't really have a fixed "timeslice". The amount of time they get to run is determined by their nice level, previous cpu usage, cpu usage of other tasks, etc. Chris -- 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/