Skip to content

Commit

Permalink
Export the symbol of getboottime and mmonotonic_to_bootbased
Browse files Browse the repository at this point in the history
Export getboottime and monotonic_to_bootbased in order to let them
could be used by following patch.

Cc: stable@kernel.org
Signed-off-by: Jason Wang <jasowang@redhat.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
  • Loading branch information
Jason Wang authored and Avi Kivity committed Feb 9, 2010
1 parent 6339204 commit c93d89f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions kernel/time/timekeeping.c
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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)
{
Expand Down

0 comments on commit c93d89f

Please sign in to comment.