summaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2010-02-10 07:18:15 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2010-02-10 07:18:15 -0800
commit2cbd1883881ac490d93514324b947a0267c5ca96 (patch)
tree79211d70db535cfb838f3e79d31dd2ceaf6d22c1 /kernel
parent5993fe31c0e9646233ff4ecea32e3c899036eda9 (diff)
parentee73f656a604d5aa9df86a97102e4e462dd79924 (diff)
downloadlinux-2cbd1883881ac490d93514324b947a0267c5ca96.tar.gz
linux-2cbd1883881ac490d93514324b947a0267c5ca96.tar.bz2
linux-2cbd1883881ac490d93514324b947a0267c5ca96.zip
Merge branch 'kvm-updates/2.6.33' of git://git.kernel.org/pub/scm/virt/kvm/kvm
* 'kvm-updates/2.6.33' of git://git.kernel.org/pub/scm/virt/kvm/kvm: KVM: PIT: control word is write-only kvmclock: count total_sleep_time when updating guest clock Export the symbol of getboottime and mmonotonic_to_bootbased
Diffstat (limited to 'kernel')
-rw-r--r--kernel/time/timekeeping.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/time/timekeeping.c b/kernel/time/timekeeping.c
index 7faaa32fbf4f..e2ab064c6d41 100644
--- a/kernel/time/timekeeping.c
+++ b/kernel/time/timekeeping.c
@@ -880,6 +880,7 @@ void getboottime(struct timespec *ts)
set_normalized_timespec(ts, -boottime.tv_sec, -boottime.tv_nsec);
}
+EXPORT_SYMBOL_GPL(getboottime);
/**
* monotonic_to_bootbased - Convert the monotonic time to boot based.
@@ -889,6 +890,7 @@ void monotonic_to_bootbased(struct timespec *ts)
{
*ts = timespec_add_safe(*ts, total_sleep_time);
}
+EXPORT_SYMBOL_GPL(monotonic_to_bootbased);
unsigned long get_seconds(void)
{