Kernel Timer Systems

From eLinux.org
Revision as of 17:31, 22 October 2007 by Tim Bird (talk | contribs) (Testing)
Jump to: navigation, search

This page has links to information about the (relatively) new timer systems for the Linux kernel. The current linux kernel received a major enhancement to it's timer system (as of about 2.6.21), which solved a number of problems.

A good article on the subject is at at lwn.net: Clockevents and dyntick


Timer Wheel, Jiffies and HZ (or, the way it was)

The original kernel timer system (called the "timer wheel) was based on incrementing a kernel-internal value (jiffies) every timer interrupt. The timer interrupt becomes the default scheduling quamtum, and all other timers are based on jiffies. The timer interrupt rate (and jiffy increment rate) is defined by a compile-time constant called HZ. Different platforms use different values for HZ. Historically, the kernel used 100 as the value for HZ, yielding a jiffy interval of 10 ms. With 2.4, the HZ value for i386 was changed to 1000, yeilding a jiffy interval of 1 ms. Recently (2.6.13) the kernel changed HZ for i386 to 250. (1000 was deemed too high).

Ingo Molnar's explanation of timer wheel performance

Ingo Molnar did an in-depth explanation about the performance of the current "timer wheel" implementation of timers. This was part of a series of messages trying to justify the addition of ktimers (which have different characteristics).

It is possibly the best explanation of the timer wheel avaiable: See http://lkml.org/lkml/2005/10/19/46 and http://lwn.net/Articles/156329/

ktimers

Material needs rework

A bunch of material in this section needs to be created or expanded to take into account the new ktimer system by Thomas Gleixner.

clock events

clock sources

Dynamic ticks

The configuration option is: CONFIG_NO_HZ

Prompt is: Tickless System (Dynamic Ticks), on the Kernel Features configuration menu.

Testing

How to tell if dynamic ticks is supported on your kernel:

You can look at the timer interrupts and compare to jiffies:

 cat /proc/interrupts | grep -i time
 sleep 10
 cat /proc/interrupts | grep -i time

To use /proc/timer_stats, configure the kernel with support for the feature. CONFIG_TIMER_STATS. This is on the Kernel Hacking menu, with the prompt: "Collect kernel timers statistics"

To activate the collection of stats (and reset the counters), do "echo 1 >/proc/timer_stats"

To stop collecting stats, do "echo 0 >/proc/timer_stats"

Then, cat /proc/timer_stats, and it gives and average events/sec at the end as well so you get a rough idea of system activity.

/proc/timer_stats fields (for version 0.1 of the format) are:

<count>,  <pid> <command>   <start_func> (<expire_func>)


You can use powertop on embedded processors, but in order to get a clean display from it, you need an ncurses lib with wide-char support. (From Kevin Hilman, Oct 2007)

timer API

  • interval timers
  • posix timer API
  • sleep, usleep and nanosleep

time API

- do_gettimeofday

High Resolution Timers

See High Resolution Timers, which describe sub-jiffy timers.

Old timer wheel/jiffy replacement proposals

Jun Sun's "tock" proposal

See http://linux.junsun.net/HRT/index.html

This systems replaces jiffies and xtime with tocks (arch-dependent), mtime (monotonic time) and wtime (wall time), and proposes a strategy for migrating to that.

John Stultz

In 2005, John Stultz proposed changes to the timers to use a 64-bit nanosecond value as the base. He did a presentation and BOF at OLS 2005. (It should be available online)

Timer Tick Thread - LKML July 2005

There was a very long thread about timers, jiffies, and related subjects in July of 2005 on the kernel mailing list.

The title was: "Re: [PATCH] i386: Selectable Frequency of the Timer Interrupt"

Linus said jiffies is not going away

- still need 32-bit counter, shouldn't be real-time value (too much overhead to calculate)
- high-res timers shouldn't be sub-HZ, but instead, HZ should be high and timer tick should not be 1:1 with HZ
  - in other words, have HZ be high (like 2K), have the timer interrupt fire off at some lower frequency,
  and increment jiffies by more than one on each interrupt.
  - rationale for this is to keep a single sub-system

Arjan had good points about coalescing low-res timers

- 3 use cases:
- low res timeouts
- high res timer for periodic absolute wakeup (wake up every 10 ms, whether last one was late or nt
- high res timer for periodic relative wakeup (wake up 10 ms from now)