diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2006-01-09 20:52:31 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-10 08:01:37 -0800 |
commit | 97fc79f97b1111c80010d34ee66312b88f531e41 (patch) | |
tree | a76e39521541dd3067e653f4463df5b651cf38af /arch/i386 | |
parent | f8f46da3b4cbb03b43a102b1eb92b63419e10f90 (diff) |
[PATCH] hrtimer: introduce ktime_t time format
- introduce ktime_t: nanosecond-resolution time format.
- eliminate the plain s64 scalar type, and always use the union.
This simplifies the arithmetics. Idea from Roman Zippel.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/i386')
-rw-r--r-- | arch/i386/Kconfig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/i386/Kconfig b/arch/i386/Kconfig index 554ce3f344c..815878ebd30 100644 --- a/arch/i386/Kconfig +++ b/arch/i386/Kconfig @@ -1060,3 +1060,7 @@ config X86_TRAMPOLINE bool depends on X86_SMP || (X86_VOYAGER && SMP) default y + +config KTIME_SCALAR + bool + default y |