diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2008-10-04 15:40:23 -0400 |
---|---|---|
committer | Alexey Dobriyan <adobriyan@gmail.com> | 2008-10-23 07:05:11 -0400 |
commit | 8591cf43224980a0bc9216a4e50b0a740f8cba35 (patch) | |
tree | f3af8c5a36528b961c95354662c38a5f06d406aa /fs/proc | |
parent | fe2510426a02dd2fefcb0389b60f77cbe0462289 (diff) |
proc: move /proc/cpuinfo code to fs/proc/cpuinfo.c
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Diffstat (limited to 'fs/proc')
-rw-r--r-- | fs/proc/Makefile | 1 | ||||
-rw-r--r-- | fs/proc/cpuinfo.c | 24 | ||||
-rw-r--r-- | fs/proc/proc_misc.c | 14 |
3 files changed, 25 insertions, 14 deletions
diff --git a/fs/proc/Makefile b/fs/proc/Makefile index f24ebfdc5b4f..c91cc9c283bd 100644 --- a/fs/proc/Makefile +++ b/fs/proc/Makefile | |||
@@ -10,6 +10,7 @@ proc-$(CONFIG_MMU) := mmu.o task_mmu.o | |||
10 | proc-y += inode.o root.o base.o generic.o array.o \ | 10 | proc-y += inode.o root.o base.o generic.o array.o \ |
11 | proc_tty.o proc_misc.o | 11 | proc_tty.o proc_misc.o |
12 | proc-y += cmdline.o | 12 | proc-y += cmdline.o |
13 | proc-y += cpuinfo.o | ||
13 | proc-y += devices.o | 14 | proc-y += devices.o |
14 | proc-y += loadavg.o | 15 | proc-y += loadavg.o |
15 | proc-y += meminfo.o | 16 | proc-y += meminfo.o |
diff --git a/fs/proc/cpuinfo.c b/fs/proc/cpuinfo.c new file mode 100644 index 000000000000..5a1e539a234b --- /dev/null +++ b/fs/proc/cpuinfo.c | |||
@@ -0,0 +1,24 @@ | |||
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 | static int cpuinfo_open(struct inode *inode, struct file *file) | ||
8 | { | ||
9 | 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 | static int __init proc_cpuinfo_init(void) | ||
20 | { | ||
21 | proc_create("cpuinfo", 0, NULL, &proc_cpuinfo_operations); | ||
22 | return 0; | ||
23 | } | ||
24 | module_init(proc_cpuinfo_init); | ||
diff --git a/fs/proc/proc_misc.c b/fs/proc/proc_misc.c index a6fadc0cc4b0..8974809be5f6 100644 --- a/fs/proc/proc_misc.c +++ b/fs/proc/proc_misc.c | |||
@@ -94,19 +94,6 @@ static const struct file_operations proc_zoneinfo_file_operations = { | |||
94 | .release = seq_release, | 94 | .release = seq_release, |
95 | }; | 95 | }; |
96 | 96 | ||
97 | extern const struct seq_operations cpuinfo_op; | ||
98 | static int cpuinfo_open(struct inode *inode, struct file *file) | ||
99 | { | ||
100 | return seq_open(file, &cpuinfo_op); | ||
101 | } | ||
102 | |||
103 | static const struct file_operations proc_cpuinfo_operations = { | ||
104 | .open = cpuinfo_open, | ||
105 | .read = seq_read, | ||
106 | .llseek = seq_lseek, | ||
107 | .release = seq_release, | ||
108 | }; | ||
109 | |||
110 | static int vmstat_open(struct inode *inode, struct file *file) | 97 | static int vmstat_open(struct inode *inode, struct file *file) |
111 | { | 98 | { |
112 | return seq_open(file, &vmstat_op); | 99 | return seq_open(file, &vmstat_op); |
@@ -532,7 +519,6 @@ void __init proc_misc_init(void) | |||
532 | proc_symlink("mounts", NULL, "self/mounts"); | 519 | proc_symlink("mounts", NULL, "self/mounts"); |
533 | 520 | ||
534 | /* And now for trickier ones */ | 521 | /* And now for trickier ones */ |
535 | proc_create("cpuinfo", 0, NULL, &proc_cpuinfo_operations); | ||
536 | #ifdef CONFIG_BLOCK | 522 | #ifdef CONFIG_BLOCK |
537 | proc_create("partitions", 0, NULL, &proc_partitions_operations); | 523 | proc_create("partitions", 0, NULL, &proc_partitions_operations); |
538 | #endif | 524 | #endif |