2011-04-26 21:37:44

by john stultz

[permalink] [raw]
Subject: [git pull] Posix Alarm Timers for 2.6.40

Hey Thomas,

Here's my Posix Alarm Timers patch queue for 2.6.40. Please let me know
if you see any issues that would block it from being merged into -tip.

thanks
-john

git://git.linaro.org/people/jstultz/linux.git fortglx/40/tip/timer/core

John Stultz (4):
time: Add timekeeping_inject_sleeptime
timers: Add rb_init_node() to allow for stack allocated rb nodes
timers: Introduce in-kernel alarm-timer interface
timers: Posix interface for alarm-timers

drivers/rtc/class.c | 23 +-
include/linux/alarmtimer.h | 30 ++
include/linux/capability.h | 7 +-
include/linux/posix-timers.h | 2 +
include/linux/rbtree.h | 8 +
include/linux/time.h | 3 +
include/linux/timerqueue.h | 2 +-
kernel/time/Makefile | 2 +-
kernel/time/alarmtimer.c | 705 ++++++++++++++++++++++++++++++++++++++++++
kernel/time/timekeeping.c | 56 ++++-
10 files changed, 818 insertions(+), 20 deletions(-)
create mode 100644 include/linux/alarmtimer.h
create mode 100644 kernel/time/alarmtimer.c