diff options
author | Jason Wang <jasowang@redhat.com> | 2010-01-27 19:13:40 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-02-23 07:37:52 -0800 |
commit | 1c63c20663a84b03a2dc47d1c1998f1883081162 (patch) | |
tree | 134f2a0950c758a8ef05ded146c6301ff985a695 | |
parent | 134bb65d8d9fa4e8bf3a7637e983e8d01e063544 (diff) | |
download | lwn-1c63c20663a84b03a2dc47d1c1998f1883081162.tar.gz lwn-1c63c20663a84b03a2dc47d1c1998f1883081162.zip |
Export the symbol of getboottime and mmonotonic_to_bootbased
commit c93d89f3dbf0202bf19c07960ca8602b48c2f9a0 upstream.
Export getboottime and monotonic_to_bootbased in order to let them
could be used by following patch.
Signed-off-by: Jason Wang <jasowang@redhat.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | kernel/time/timekeeping.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/time/timekeeping.c b/kernel/time/timekeeping.c index 66d090e3c70a..8b709dee8e34 100644 --- a/kernel/time/timekeeping.c +++ b/kernel/time/timekeeping.c @@ -845,6 +845,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. @@ -854,6 +855,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) { |