Commit 1c63c206 authored by Jason Wang's avatar Jason Wang Committed by Greg Kroah-Hartman

Export the symbol of getboottime and mmonotonic_to_bootbased

commit c93d89f3 upstream.

Export getboottime and monotonic_to_bootbased in order to let them
could be used by following patch.
Signed-off-by: default avatarJason Wang <jasowang@redhat.com>
Signed-off-by: default avatarMarcelo Tosatti <mtosatti@redhat.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 134bb65d
...@@ -845,6 +845,7 @@ void getboottime(struct timespec *ts) ...@@ -845,6 +845,7 @@ void getboottime(struct timespec *ts)
set_normalized_timespec(ts, -boottime.tv_sec, -boottime.tv_nsec); set_normalized_timespec(ts, -boottime.tv_sec, -boottime.tv_nsec);
} }
EXPORT_SYMBOL_GPL(getboottime);
/** /**
* monotonic_to_bootbased - Convert the monotonic time to boot based. * monotonic_to_bootbased - Convert the monotonic time to boot based.
...@@ -854,6 +855,7 @@ void monotonic_to_bootbased(struct timespec *ts) ...@@ -854,6 +855,7 @@ void monotonic_to_bootbased(struct timespec *ts)
{ {
*ts = timespec_add_safe(*ts, total_sleep_time); *ts = timespec_add_safe(*ts, total_sleep_time);
} }
EXPORT_SYMBOL_GPL(monotonic_to_bootbased);
unsigned long get_seconds(void) unsigned long get_seconds(void)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment