LCOV - code coverage report
Current view: top level - fs/proc - cpuinfo.c (source / functions) Hit Total Coverage
Test: coverage.info Lines: 1 4 25.0 %
Date: 2014-02-18 Functions: 1 2 50.0 %
Branches: 0 0 -

           Branch data     Line data    Source code
       1                 :            : #include <linux/fs.h>
       2                 :            : #include <linux/init.h>
       3                 :            : #include <linux/proc_fs.h>
       4                 :            : #include <linux/seq_file.h>
       5                 :            : 
       6                 :            : extern const struct seq_operations cpuinfo_op;
       7                 :          0 : static int cpuinfo_open(struct inode *inode, struct file *file)
       8                 :            : {
       9                 :          2 :         return seq_open(file, &cpuinfo_op);
      10                 :            : }
      11                 :            : 
      12                 :            : static const struct file_operations proc_cpuinfo_operations = {
      13                 :            :         .open           = cpuinfo_open,
      14                 :            :         .read           = seq_read,
      15                 :            :         .llseek         = seq_lseek,
      16                 :            :         .release        = seq_release,
      17                 :            : };
      18                 :            : 
      19                 :          0 : static int __init proc_cpuinfo_init(void)
      20                 :            : {
      21                 :            :         proc_create("cpuinfo", 0, NULL, &proc_cpuinfo_operations);
      22                 :          0 :         return 0;
      23                 :            : }
      24                 :            : module_init(proc_cpuinfo_init);

Generated by: LCOV version 1.9