diff options
| author | Thomas Gleixner <[email protected]> | 2007-02-16 01:28:02 -0800 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2007-02-16 08:13:59 -0800 |
| commit | f8381cba04ba8173fd5a2b8e5cd8b3290ee13a98 (patch) | |
| tree | ad8c9f91ce031a04c62ff75fcd3237fc666f1c2e /kernel/time/Makefile | |
| parent | 906568c9c668ff994f4078932ec6ae1e3950d1af (diff) | |
[PATCH] tick-management: broadcast functionality
With Ingo Molnar <[email protected]>
Add broadcast functionality, so per cpu clock event devices can be registered
as dummy devices or switched from/to broadcast on demand. The broadcast
function distributes the events via the broadcast function of the clock event
device. This is primarily designed to replace the switch apic timer to / from
IPI in power states, where the apic stops.
Signed-off-by: Thomas Gleixner <[email protected]>
Signed-off-by: Ingo Molnar <[email protected]>
Cc: john stultz <[email protected]>
Cc: Roman Zippel <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'kernel/time/Makefile')
| -rw-r--r-- | kernel/time/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/kernel/time/Makefile b/kernel/time/Makefile index 337daef72755..a941743c3ff8 100644 --- a/kernel/time/Makefile +++ b/kernel/time/Makefile @@ -1,4 +1,5 @@ obj-y += ntp.o clocksource.o jiffies.o -obj-$(CONFIG_GENERIC_CLOCKEVENTS) += clockevents.o -obj-$(CONFIG_GENERIC_CLOCKEVENTS) += tick-common.o +obj-$(CONFIG_GENERIC_CLOCKEVENTS) += clockevents.o +obj-$(CONFIG_GENERIC_CLOCKEVENTS) += tick-common.o +obj-$(CONFIG_GENERIC_CLOCKEVENTS_BROADCAST) += tick-broadcast.o |