diff options
author | Arjan van de Ven | 2006-03-28 11:56:41 +0200 |
---|---|---|
committer | Linus Torvalds | 2006-03-28 19:16:05 +0200 |
commit | 99ac48f54a91d02140c497edc31dc57d4bc5c85d (patch) | |
tree | 68719391694a6914191bdf73d2071875f7653f6f /fs/proc/generic.c | |
parent | [PATCH] ia64: const f_ops fix (diff) | |
download | kernel-qcow2-linux-99ac48f54a91d02140c497edc31dc57d4bc5c85d.tar.gz kernel-qcow2-linux-99ac48f54a91d02140c497edc31dc57d4bc5c85d.tar.xz kernel-qcow2-linux-99ac48f54a91d02140c497edc31dc57d4bc5c85d.zip |
[PATCH] mark f_ops const in the inode
Mark the f_ops members of inodes as const, as well as fix the
ripple-through this causes by places that copy this f_ops and then "do
stuff" with it.
Signed-off-by: Arjan van de Ven <arjan@infradead.org>
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/proc/generic.c')
-rw-r--r-- | fs/proc/generic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/proc/generic.c b/fs/proc/generic.c index 47b7a20d45eb..4ba03009cf72 100644 --- a/fs/proc/generic.c +++ b/fs/proc/generic.c @@ -560,7 +560,7 @@ static void proc_kill_inodes(struct proc_dir_entry *de) struct file * filp = list_entry(p, struct file, f_u.fu_list); struct dentry * dentry = filp->f_dentry; struct inode * inode; - struct file_operations *fops; + const struct file_operations *fops; if (dentry->d_op != &proc_dentry_operations) continue; |