uptime.c 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #include <linux/fs.h>
  2. #include <linux/init.h>
  3. #include <linux/proc_fs.h>
  4. #include <linux/sched.h>
  5. #include <linux/seq_file.h>
  6. #include <linux/time.h>
  7. #include <linux/kernel_stat.h>
  8. static int uptime_proc_show(struct seq_file *m, void *v)
  9. {
  10. struct timespec uptime;
  11. struct timespec idle;
  12. u64 nsec;
  13. u32 rem;
  14. int i;
  15. nsec = 0;
  16. for_each_possible_cpu(i)
  17. nsec += (__force u64) kcpustat_cpu(i).cpustat[CPUTIME_IDLE];
  18. get_monotonic_boottime(&uptime);
  19. idle.tv_sec = div_u64_rem(nsec, NSEC_PER_SEC, &rem);
  20. idle.tv_nsec = rem;
  21. seq_printf(m, "%lu.%02lu %lu.%02lu\n",
  22. (unsigned long) uptime.tv_sec,
  23. (uptime.tv_nsec / (NSEC_PER_SEC / 100)),
  24. (unsigned long) idle.tv_sec,
  25. (idle.tv_nsec / (NSEC_PER_SEC / 100)));
  26. return 0;
  27. }
  28. static int uptime_proc_open(struct inode *inode, struct file *file)
  29. {
  30. return single_open(file, uptime_proc_show, NULL);
  31. }
  32. static const struct file_operations uptime_proc_fops = {
  33. .open = uptime_proc_open,
  34. .read = seq_read,
  35. .llseek = seq_lseek,
  36. .release = single_release,
  37. };
  38. static int __init proc_uptime_init(void)
  39. {
  40. proc_create("uptime", 0, NULL, &uptime_proc_fops);
  41. return 0;
  42. }
  43. fs_initcall(proc_uptime_init);