RE: Maximum frequency of re-scheduling (minimum time quantum) que stio n

From: Povolotsky, Alexander (Alexander.Povolotsky_at_marconi.com)
Date: 07/07/04

  • Next message: michael trimarchi: "Re: Real time"
    To: "'Elladan'" <elladan@eskimo.com>
    Date:	Wed, 7 Jul 2004 05:48:17 -0400 
    
    

    Thanks again (and sorry for annoying yet again)!

    >If an interrupt from some device, or the timer interrupt, causes a
    >high-priority process to become runnable

    I guess, you are referring above to what is also called "process wake-up" or
    "process awakening" ?
    What are the specific means of effecting "process wake-up" (say at the
    interrupt time) ?

    >All system calls execute schedule() before returning to user space, if
    >schedule has been requested. It's done in the system call handler. An
    >interrupt will also schedule if necessary.

    Does above suggest that OS calls (with the schedule NOT being requested) are
    permissable to be executed from the ISR (Interrupt Service Routine)?
    ... - I have been told that anything, that invokes the scheduler is not
    callable from the ISR ...

    Best Regards,
    Alex Povolotsky
    -----Original Message-----
    From: Elladan [mailto:elladan@eskimo.com]
    Sent: Wednesday, July 07, 2004 4:59 AM
    To: Povolotsky, Alexander
    Cc: 'Mike Galbraith'; 'elladan@eskimo.com';
    'linux-kernel@vger.kernel.org'
    Subject: Re: Maximum frequency of re-scheduling (minimum time quantum)
    que stio n

    On Wed, Jul 07, 2004 at 03:59:01AM -0400, Povolotsky, Alexander wrote:
    > Thanks to both of you for answering !
    >
    > >The catch here is, without the preemptable kernel option, the kernel
    > >can't preempt itself, so if the first process was doing something in the
    > >kernel, there'd be a delay. Even with the option, it can't preempt
    > >itself inside of a critical section, so there will still be a (shorter)
    > >delay.
    >
    > Yes, I am aware, - thanks to the previous answer (not included here), -
    about
    > this Linux 2.6 configurable "preemptable kernel" option and was assuming
    it is configured
    > and in effect.

    Note that the preemptable kernel gives you no guarantee of latency,
    though it does reduce the average latency. A different patch was
    constructed in the 2.4 era which attempted to provide guaranteed latency
    through a different approach (effectively, having all long-running
    operations yield).

    > >In addition, the kernel can only preempt if something happens which lets
    > >it check its state. Unless the low priority process makes some system
    calls,
    >
    > does above means that "system calls" have internal "built-in"
    > schedule() call within their implementation ?

    All system calls execute schedule() before returning to user space, if
    schedule has been requested. It's done in the system call handler. An
    interrupt will also schedule if necessary.

    In addition, if you have a preemptable kernel, schedule() may be
    executed on demand at any time the kernel isn't in a critical section,
    or upon exiting a critical section if it is.

    > >the only thing that will trigger this is the timer interrupt
    > >which runs at eg. 100 or 400hz typically.
    >
    > So I think that above is anwering my original question, that in the "worst
    > case" scenario - unless the rescheduling is induced earlier by explicit or
    > implicit (via system calls) invokation of the schedule() function
    > call, - the attempt of rescheduling (again, of course, by calling
    schedule()
    > function call) will be done at least at every "clock tick time" (say every
    > 10 ms, which is default value) ?

    The reschedule will be done whenever the kernel does it. There is no
    guaranteed worst case. It's just based on "best effort."

    If an interrupt from some device, or the timer interrupt, causes a
    high-priority process to become runnable, the kernel will attempt to
    schedule as soon as possible. With a preemptable kernel, that will be
    as soon as it releases all locks and can thus be safely interrupted.
    But the kernel makes no guarantee that locks won't be held for long
    periods of time, so the worst case latency is the longest possible
    duration of an operation in the kernel. That could be quite long (many
    milliseconds) if it's walking tables, hitting worst-case hash behavior,
    etc.

    The thing to note about the timer is that, if you have no external
    interrupt driving your wakeup, then you're waking up based on some sort
    of timer. The best resolution you can get from a timer is approximately
    based on HZ. In 2.6 kernels, the interrupt frequency is 1000hz, but
    ticks are represented to userspace as if they were 100hz. Also, you may
    have an RTC available if you need high frequency interrupts.

    -J
    ----Original Message-----
    From: Mike Galbraith [mailto:efault@gmx.de]
    Sent: Monday, July 05, 2004 11:33 AM
    To: Povolotsky, Alexander; 'linux-kernel@vger.kernel.org'
    Subject: RE: Maximum frequency of re-scheduling (minimum time quantum)
    que stio n

    At 10:18 AM 7/5/2004 -0400, Povolotsky, Alexander wrote:

    >Mike - the part of my original question was - what is the minimum "measure"
    >(in time ticks or is fraction of the time tick ?) of that "(almost) any
    time"
    >? In another words, what is the latency between the moment, when
    >the higher priority process (or thread ) is becoming available to run
    >(assuming that "schedule()" system call is not explicitly called at that
    time
    >...) and the moment when the scheduler STARTS (I am not including context
    >switch time into the question here) the process of preemtion (the start of
    the
    >context switch). Is this time settable (at compile time ) ?

    Ah, you want wakeup latency numbers. Sorry, I don't have any. I believe
    Andrew and David both wrote tools for measuring in the wild, a search of
    the archives should turn up something that will give you the numbers you're
    looking for.

    If I'm understanding your question, no, there is no latency guarantee.

    > >If you're looking for an interface into the scheduler that allows you to
    > >twiddle slice length
    >
    >you mean at the run time (vs compile time), I assume ?

    Yes.

             -Mike
    -----Original Message-----
    From: Elladan [mailto:elladan@eskimo.com]
    Sent: Monday, July 05, 2004 10:51 PM
    To: Povolotsky, Alexander
    Subject: Re: Maximum frequency of re-scheduling (minimum time quantum)
    questi n

    Your question here isn't about time slices, it's about preemption
    latency.

    A time slice refers to the time the OS will hand to a process to run,
    provided no other operation preempts it during its execution.

    If a higher priority task becomes runnable, the kernel will switch
    execution to the task at that moment as best it can. Eg., an interrupt
    happens which causes an event that wakes up the high priority task.
    Before returning to the first process, the kernel will determine that it
    should switch, and will return to the high priority process instead.

    The catch here is, without the preemptable kernel option, the kernel
    can't preempt itself, so if the first process was doing something in the
    kernel, there'd be a delay. Even with the option, it can't preempt
    itself inside of a critical section, so there will still be a (shorter)
    delay.

    The kernel is not real-time, so there is no guarantee about how long the
    delay might be. The critical sections, for instance, might persist for
    a (relatively) long time.

    In addition, the kernel can only preempt if something happens which lets
    it check its state. Unless the low priority process makes some system
    calls, the only thing that will trigger this is the timer interrupt
    which runs at eg. 100 or 400hz typically.

    -J
    -----Original Message-----
    From: Mike Galbraith [mailto:efault@gmx.de]
    Sent: Monday, July 05, 2004 9:39 AM
    To: Povolotsky, Alexander
    Subject: Re: Maximum frequency of re-scheduling (minimum time quantum)
    questio n

    At 04:13 AM 7/5/2004 -0400, you wrote:
    >Hello,
    >
    >In Linux 2.6 kernel, configured with SCHED_RR, - could rescheduling be set
    >to be attempted (and executed when appropriate) at EVERY CLOCK TICK, thus
    >allowing the "other" process/thread (if available and ready at the moment)
    >with the higher (highest at that time) priority or, otherwise, with the
    same
    >priority (the "next" process/thread in the same Round Robin queue, from
    >which the "current" process/thread was "picked" ) to preempt the "current"
    >process/thread ?

    Well, you _could_ set (albeit only at compile time) the maximum timeslice
    to be 1 ms if you so desired, that would do the rapid round robin between
    peer threads thing you want. Note however, that this won't give you a
    predictable 1 ms of cpu though, since a thread of higher priority, once
    awakened, will preempt anything of lower priority, and repeatedly receive
    renewed slices as long as it wants cpu and has not exhausted it's priority
    bonus... lower priority threads can starve.

    >If EVERY CLOCK TICK is not conceptually possible (please note, that I am
    not
    >claiming that frequent rescheduling is "good", I am just asking to what
    >measure it is possible ...) - then what is the minimum "rescheduling" time
    >quantum (measured in clock ticks) is settable/possible ?
    >
    >What is the default value (which I presume was chosen as "optimal" ?) ?

    Timeslices are normally 100ms, but as noted, wakeup of higher priority
    threads can preempt current at (almost) any time, so a slice may be spread
    over an indeterminate amount of time. Also note that SCHED_FIFO tasks
    _have_ no slice, so queue rotation only happens at sleep time for this
    class of tasks.

    If you're looking for an interface into the scheduler that allows you to
    twiddle slice length, there is none.

             -Mike
    -
    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/


  • Next message: michael trimarchi: "Re: Real time"

    Relevant Pages

    • Re: Is a non-prempt kernel faster and better then a prempt one?
      ... again (complete the task that caused them to enter the kernel). ... Like for example a par port thing that needs to do IO within a specific time? ... I think what you are saying is interrupt service. ... service has the highest prority that can preempt every process. ...
      (comp.os.linux.development.apps)
    • Re: How linux schedules things when interrupts occur
      ... kernel deals with scheduling it's work. ... Suppose Linux is running on a single CPU system. ... When an APIC processed hardware interrupt comes and assuming the ... Then schedule is called and it will most likely schedule another process. ...
      (Linux-Kernel)
    • CONFIG_PREEMPT x86 assembly question
      ... Whily lazy-examining kernel code, I found the following interesting point. ... Why, after return from schedule(), first 0 is written to ... the idea of the preempt_count flag is to avoid ... causing nested interrupt while preempt_count flag is already reset. ...
      (Linux-Kernel)
    • Re: __wait_event_interruptible question
      ... > I got the next macro from sched.h from kernel 2.4.23_pre5. ... > from an interrupt service routine, I think it is possible that the ... lose the CPU before it calls schedule(). ... how it would work with preemption. ...
      (comp.os.linux.development.system)
    • Re: 2.6.16-rt10
      ... zero, and in non preemptible sections it is>0. ... schedule when you could have. ... but with the -rt kernel we concentrate on low latency, ... calling schedule when preempt count goes to zero and the need_resched ...
      (Linux-Kernel)