diff options
author | Vasiliy Kulikov <segooon@gmail.com> | 2012-01-10 18:11:27 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-10 19:30:54 -0500 |
commit | 97412950b10e64f347aec4a9b759395c2465adf6 (patch) | |
tree | 1b68e499cb9fcda81f88d6d0ee57826f4a6d7a56 /fs/proc/inode.c | |
parent | 640708a2cff7f81e246243b0073c66e6ece7e53e (diff) |
procfs: parse mount options
Add support for procfs mount options. Actual mount options are coming in
the next patches.
Signed-off-by: Vasiliy Kulikov <segoon@openwall.com>
Cc: Alexey Dobriyan <adobriyan@gmail.com>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Cc: Randy Dunlap <rdunlap@xenotime.net>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Greg KH <greg@kroah.com>
Cc: Theodore Tso <tytso@MIT.EDU>
Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Cc: James Morris <jmorris@namei.org>
Cc: Oleg Nesterov <oleg@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/proc/inode.c')
-rw-r--r-- | fs/proc/inode.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/fs/proc/inode.c b/fs/proc/inode.c index 51a176622b8f..27c762f34870 100644 --- a/fs/proc/inode.c +++ b/fs/proc/inode.c | |||
@@ -7,6 +7,7 @@ | |||
7 | #include <linux/time.h> | 7 | #include <linux/time.h> |
8 | #include <linux/proc_fs.h> | 8 | #include <linux/proc_fs.h> |
9 | #include <linux/kernel.h> | 9 | #include <linux/kernel.h> |
10 | #include <linux/pid_namespace.h> | ||
10 | #include <linux/mm.h> | 11 | #include <linux/mm.h> |
11 | #include <linux/string.h> | 12 | #include <linux/string.h> |
12 | #include <linux/stat.h> | 13 | #include <linux/stat.h> |
@@ -17,7 +18,9 @@ | |||
17 | #include <linux/init.h> | 18 | #include <linux/init.h> |
18 | #include <linux/module.h> | 19 | #include <linux/module.h> |
19 | #include <linux/sysctl.h> | 20 | #include <linux/sysctl.h> |
21 | #include <linux/seq_file.h> | ||
20 | #include <linux/slab.h> | 22 | #include <linux/slab.h> |
23 | #include <linux/mount.h> | ||
21 | 24 | ||
22 | #include <asm/system.h> | 25 | #include <asm/system.h> |
23 | #include <asm/uaccess.h> | 26 | #include <asm/uaccess.h> |
@@ -101,12 +104,19 @@ void __init proc_init_inodecache(void) | |||
101 | init_once); | 104 | init_once); |
102 | } | 105 | } |
103 | 106 | ||
107 | static int proc_show_options(struct seq_file *seq, struct dentry *root) | ||
108 | { | ||
109 | return 0; | ||
110 | } | ||
111 | |||
104 | static const struct super_operations proc_sops = { | 112 | static const struct super_operations proc_sops = { |
105 | .alloc_inode = proc_alloc_inode, | 113 | .alloc_inode = proc_alloc_inode, |
106 | .destroy_inode = proc_destroy_inode, | 114 | .destroy_inode = proc_destroy_inode, |
107 | .drop_inode = generic_delete_inode, | 115 | .drop_inode = generic_delete_inode, |
108 | .evict_inode = proc_evict_inode, | 116 | .evict_inode = proc_evict_inode, |
109 | .statfs = simple_statfs, | 117 | .statfs = simple_statfs, |
118 | .remount_fs = proc_remount, | ||
119 | .show_options = proc_show_options, | ||
110 | }; | 120 | }; |
111 | 121 | ||
112 | static void __pde_users_dec(struct proc_dir_entry *pde) | 122 | static void __pde_users_dec(struct proc_dir_entry *pde) |