aboutsummaryrefslogtreecommitdiffstats
path: root/fs/proc/cmdline.c
diff options
context:
space:
mode:
authorAlexey Dobriyan <adobriyan@gmail.com>2008-10-04 06:13:59 -0400
committerAlexey Dobriyan <adobriyan@gmail.com>2008-10-23 06:29:04 -0400
commitcf9887f102541b8a0adb73f7da9c28d090622010 (patch)
treec06fa077c8d8fcf6d88a267172a6322619e5f7e0 /fs/proc/cmdline.c
parent6827400713fa22312ca3b4f47b0e64871c88040c (diff)
proc: switch /proc/cmdline to seq_file
and move it to fs/proc/cmdline.c while I'm at it. Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Diffstat (limited to 'fs/proc/cmdline.c')
-rw-r--r--fs/proc/cmdline.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/fs/proc/cmdline.c b/fs/proc/cmdline.c
new file mode 100644
index 000000000000..82676e3fcd1d
--- /dev/null
+++ b/fs/proc/cmdline.c
@@ -0,0 +1,29 @@
1#include <linux/fs.h>
2#include <linux/init.h>
3#include <linux/proc_fs.h>
4#include <linux/seq_file.h>
5
6static int cmdline_proc_show(struct seq_file *m, void *v)
7{
8 seq_printf(m, "%s\n", saved_command_line);
9 return 0;
10}
11
12static int cmdline_proc_open(struct inode *inode, struct file *file)
13{
14 return single_open(file, cmdline_proc_show, NULL);
15}
16
17static const struct file_operations cmdline_proc_fops = {
18 .open = cmdline_proc_open,
19 .read = seq_read,
20 .llseek = seq_lseek,
21 .release = single_release,
22};
23
24static int __init proc_cmdline_init(void)
25{
26 proc_create("cmdline", 0, NULL, &cmdline_proc_fops);
27 return 0;
28}
29module_init(proc_cmdline_init);