LCOV - code coverage report
Current view: top level - fs/proc - uptime.c (source / functions) Hit Total Coverage
Test: combined.info Lines: 3 19 15.8 %
Date: 2022-03-28 16:04:14 Functions: 1 2 50.0 %
Branches: 0 2 0.0 %

           Branch data     Line data    Source code
       1                 :            : // SPDX-License-Identifier: GPL-2.0
       2                 :            : #include <linux/fs.h>
       3                 :            : #include <linux/init.h>
       4                 :            : #include <linux/proc_fs.h>
       5                 :            : #include <linux/sched.h>
       6                 :            : #include <linux/seq_file.h>
       7                 :            : #include <linux/time.h>
       8                 :            : #include <linux/time_namespace.h>
       9                 :            : #include <linux/kernel_stat.h>
      10                 :            : 
      11                 :          0 : static int uptime_proc_show(struct seq_file *m, void *v)
      12                 :            : {
      13                 :          0 :         struct timespec64 uptime;
      14                 :          0 :         struct timespec64 idle;
      15                 :          0 :         u64 nsec;
      16                 :          0 :         u32 rem;
      17                 :          0 :         int i;
      18                 :            : 
      19                 :          0 :         nsec = 0;
      20         [ #  # ]:          0 :         for_each_possible_cpu(i)
      21                 :          0 :                 nsec += (__force u64) kcpustat_cpu(i).cpustat[CPUTIME_IDLE];
      22                 :            : 
      23                 :          0 :         ktime_get_boottime_ts64(&uptime);
      24                 :          0 :         timens_add_boottime(&uptime);
      25                 :            : 
      26                 :          0 :         idle.tv_sec = div_u64_rem(nsec, NSEC_PER_SEC, &rem);
      27                 :            :         idle.tv_nsec = rem;
      28                 :          0 :         seq_printf(m, "%lu.%02lu %lu.%02lu\n",
      29                 :          0 :                         (unsigned long) uptime.tv_sec,
      30                 :          0 :                         (uptime.tv_nsec / (NSEC_PER_SEC / 100)),
      31                 :            :                         (unsigned long) idle.tv_sec,
      32                 :            :                         (idle.tv_nsec / (NSEC_PER_SEC / 100)));
      33                 :          0 :         return 0;
      34                 :            : }
      35                 :            : 
      36                 :         13 : static int __init proc_uptime_init(void)
      37                 :            : {
      38                 :         13 :         proc_create_single("uptime", 0, NULL, uptime_proc_show);
      39                 :         13 :         return 0;
      40                 :            : }
      41                 :            : fs_initcall(proc_uptime_init);

Generated by: LCOV version 1.14