aboutsummaryrefslogtreecommitdiffstats
path: root/fs/proc/version.c
diff options
context:
space:
mode:
authorAlexey Dobriyan <adobriyan@gmail.com>2008-10-03 03:53:19 -0400
committerAlexey Dobriyan <adobriyan@gmail.com>2008-10-23 06:19:58 -0400
commitb457d151613873ea035de0c7348abc3d4b6efd34 (patch)
treeb3351dc2f04d37e0ac42bbdbabcd96eab08ad7b9 /fs/proc/version.c
parente1759c215bee5abbcb6cb066590ab20905154ed5 (diff)
proc: switch /proc/version to seq_file
and move it to fs/proc/version.c while I'm at it. Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Diffstat (limited to 'fs/proc/version.c')
-rw-r--r--fs/proc/version.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/fs/proc/version.c b/fs/proc/version.c
new file mode 100644
index 000000000000..76817a60678c
--- /dev/null
+++ b/fs/proc/version.c
@@ -0,0 +1,34 @@
1#include <linux/fs.h>
2#include <linux/init.h>
3#include <linux/kernel.h>
4#include <linux/proc_fs.h>
5#include <linux/seq_file.h>
6#include <linux/utsname.h>
7
8static int version_proc_show(struct seq_file *m, void *v)
9{
10 seq_printf(m, linux_proc_banner,
11 utsname()->sysname,
12 utsname()->release,
13 utsname()->version);
14 return 0;
15}
16
17static int version_proc_open(struct inode *inode, struct file *file)
18{
19 return single_open(file, version_proc_show, NULL);
20}
21
22static const struct file_operations version_proc_fops = {
23 .open = version_proc_open,
24 .read = seq_read,
25 .llseek = seq_lseek,
26 .release = single_release,
27};
28
29static int __init proc_version_init(void)
30{
31 proc_create("version", 0, NULL, &version_proc_fops);
32 return 0;
33}
34module_init(proc_version_init);