blob: 95a708d8372126f41106a9e0cdbe9e0cf973a36d [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Alexey Dobriyana9caa3d2009-02-20 17:07:22 +03002#include <linux/fs.h>
Alexey Dobriyan96177602008-10-03 02:38:18 +04003#include <linux/init.h>
4#include <linux/proc_fs.h>
5#include <linux/sched.h>
Alexey Dobriyana9caa3d2009-02-20 17:07:22 +03006#include <linux/seq_file.h>
Alexey Dobriyan96177602008-10-03 02:38:18 +04007#include <linux/time.h>
Michael Abbott96830a52009-09-24 10:15:19 +02008#include <linux/kernel_stat.h>
Alexey Dobriyan96177602008-10-03 02:38:18 +04009
Alexey Dobriyana9caa3d2009-02-20 17:07:22 +030010static int uptime_proc_show(struct seq_file *m, void *v)
Alexey Dobriyan96177602008-10-03 02:38:18 +040011{
12 struct timespec uptime;
13 struct timespec idle;
Martin Schwidefskyc3e0ef92011-12-15 14:56:10 +010014 u64 nsec;
15 u32 rem;
Michael Abbott96830a52009-09-24 10:15:19 +020016 int i;
Michael Abbott96830a52009-09-24 10:15:19 +020017
Frederic Weisbecker7fb13272017-01-31 04:09:19 +010018 nsec = 0;
Michael Abbott96830a52009-09-24 10:15:19 +020019 for_each_possible_cpu(i)
Frederic Weisbecker7fb13272017-01-31 04:09:19 +010020 nsec += (__force u64) kcpustat_cpu(i).cpustat[CPUTIME_IDLE];
Alexey Dobriyan96177602008-10-03 02:38:18 +040021
Oleg Nesterov1d98a5f2013-07-03 15:08:27 -070022 get_monotonic_boottime(&uptime);
Martin Schwidefskyc3e0ef92011-12-15 14:56:10 +010023 idle.tv_sec = div_u64_rem(nsec, NSEC_PER_SEC, &rem);
24 idle.tv_nsec = rem;
Alexey Dobriyana9caa3d2009-02-20 17:07:22 +030025 seq_printf(m, "%lu.%02lu %lu.%02lu\n",
Alexey Dobriyan96177602008-10-03 02:38:18 +040026 (unsigned long) uptime.tv_sec,
27 (uptime.tv_nsec / (NSEC_PER_SEC / 100)),
28 (unsigned long) idle.tv_sec,
29 (idle.tv_nsec / (NSEC_PER_SEC / 100)));
Alexey Dobriyana9caa3d2009-02-20 17:07:22 +030030 return 0;
Alexey Dobriyan96177602008-10-03 02:38:18 +040031}
32
Alexey Dobriyana9caa3d2009-02-20 17:07:22 +030033static int uptime_proc_open(struct inode *inode, struct file *file)
34{
35 return single_open(file, uptime_proc_show, NULL);
36}
37
38static const struct file_operations uptime_proc_fops = {
39 .open = uptime_proc_open,
40 .read = seq_read,
41 .llseek = seq_lseek,
42 .release = single_release,
43};
44
Alexey Dobriyan96177602008-10-03 02:38:18 +040045static int __init proc_uptime_init(void)
46{
Alexey Dobriyana9caa3d2009-02-20 17:07:22 +030047 proc_create("uptime", 0, NULL, &uptime_proc_fops);
Alexey Dobriyan96177602008-10-03 02:38:18 +040048 return 0;
49}
Paul Gortmakerabaf3782014-01-23 15:55:45 -080050fs_initcall(proc_uptime_init);