LCOV - code coverage report
Current view: top level - fs/proc - version.c (source / functions) Hit Total Coverage
Test: Real Lines: 3 9 33.3 %
Date: 2020-10-17 15:46:16 Functions: 0 2 0.0 %
Legend: Neither, QEMU, Real, Both Branches: 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/kernel.h>
       5                 :            : #include <linux/proc_fs.h>
       6                 :            : #include <linux/seq_file.h>
       7                 :            : #include <linux/utsname.h>
       8                 :            : 
       9                 :          0 : static int version_proc_show(struct seq_file *m, void *v)
      10                 :            : {
      11                 :          0 :         seq_printf(m, linux_proc_banner,
      12                 :          0 :                 utsname()->sysname,
      13                 :          0 :                 utsname()->release,
      14                 :          0 :                 utsname()->version);
      15                 :          0 :         return 0;
      16                 :            : }
      17                 :            : 
      18                 :          3 : static int __init proc_version_init(void)
      19                 :            : {
      20                 :          3 :         proc_create_single("version", 0, NULL, version_proc_show);
      21                 :          3 :         return 0;
      22                 :            : }
      23                 :            : fs_initcall(proc_version_init);
    

Generated by: LCOV version 1.14