diff options
author | Oleg Nesterov <oleg@redhat.com> | 2013-07-03 18:05:01 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-07-03 19:07:42 -0400 |
commit | 45c64940c8bb64a042464ecec89d95eb4cce9b07 (patch) | |
tree | c5aacb1cbea7d2b7667a2afad04ef558b531d0b8 /kernel/sys.c | |
parent | 7ec75e1ca1bd35872a5c7b33da4b05395bc74364 (diff) |
kernel/sys.c:do_sysinfo(): use get_monotonic_boottime()
Change do_sysinfo() to use get_monotonic_boottime() instead of
do_posix_clock_monotonic_gettime() + monotonic_to_bootbased().
Signed-off-by: Oleg Nesterov <oleg@redhat.com>
Cc: "Eric W. Biederman" <ebiederm@xmission.com>
Acked-by: John Stultz <johnstul@us.ibm.com>
Cc: Tomas Janousek <tjanouse@redhat.com>
Cc: Tomas Smetana <tsmetana@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/sys.c')
-rw-r--r-- | kernel/sys.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/kernel/sys.c b/kernel/sys.c index c1da757a97b0..7bf50dcc6d53 100644 --- a/kernel/sys.c +++ b/kernel/sys.c | |||
@@ -2355,8 +2355,7 @@ static int do_sysinfo(struct sysinfo *info) | |||
2355 | 2355 | ||
2356 | memset(info, 0, sizeof(struct sysinfo)); | 2356 | memset(info, 0, sizeof(struct sysinfo)); |
2357 | 2357 | ||
2358 | ktime_get_ts(&tp); | 2358 | get_monotonic_boottime(&tp); |
2359 | monotonic_to_bootbased(&tp); | ||
2360 | info->uptime = tp.tv_sec + (tp.tv_nsec ? 1 : 0); | 2359 | info->uptime = tp.tv_sec + (tp.tv_nsec ? 1 : 0); |
2361 | 2360 | ||
2362 | get_avenrun(info->loads, 0, SI_LOAD_SHIFT - FSHIFT); | 2361 | get_avenrun(info->loads, 0, SI_LOAD_SHIFT - FSHIFT); |