Contributors: 11
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Alexey Dobriyan |
50 |
45.87% |
4 |
18.18% |
Linus Torvalds (pre-git) |
22 |
20.18% |
7 |
31.82% |
Linus Torvalds |
19 |
17.43% |
3 |
13.64% |
Neil Horman |
8 |
7.34% |
1 |
4.55% |
Dave Jones |
3 |
2.75% |
1 |
4.55% |
Christoph Hellwig |
2 |
1.83% |
1 |
4.55% |
Jan Engelhardt |
1 |
0.92% |
1 |
4.55% |
Greg Kroah-Hartman |
1 |
0.92% |
1 |
4.55% |
Art Haas |
1 |
0.92% |
1 |
4.55% |
Pavel Emelyanov |
1 |
0.92% |
1 |
4.55% |
Paul Gortmaker |
1 |
0.92% |
1 |
4.55% |
Total |
109 |
|
22 |
|
// SPDX-License-Identifier: GPL-2.0
#include <linux/cpufreq.h>
#include <linux/fs.h>
#include <linux/init.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
extern const struct seq_operations cpuinfo_op;
static int cpuinfo_open(struct inode *inode, struct file *file)
{
return seq_open(file, &cpuinfo_op);
}
static const struct proc_ops cpuinfo_proc_ops = {
.proc_flags = PROC_ENTRY_PERMANENT,
.proc_open = cpuinfo_open,
.proc_read_iter = seq_read_iter,
.proc_lseek = seq_lseek,
.proc_release = seq_release,
};
static int __init proc_cpuinfo_init(void)
{
proc_create("cpuinfo", 0, NULL, &cpuinfo_proc_ops);
return 0;
}
fs_initcall(proc_cpuinfo_init);