diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2008-10-13 05:46:57 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-13 13:10:37 -0400 |
commit | a447c0932445f92ce6f4c1bd020f62c5097a7842 (patch) | |
tree | bacf05bc7f9764515cdd6f7dc5e2254776b4f160 /arch | |
parent | 54cebc68c81eacac41a21bdfe99dc889d3882c60 (diff) |
vfs: Use const for kernel parser table
This is a much better version of a previous patch to make the parser
tables constant. Rather than changing the typedef, we put the "const" in
all the various places where its required, allowing the __initconst
exception for nfsroot which was the cause of the previous trouble.
This was posted for review some time ago and I believe its been in -mm
since then.
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Cc: Alexander Viro <aviro@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/platforms/cell/spufs/inode.c | 2 | ||||
-rw-r--r-- | arch/s390/hypfs/inode.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/platforms/cell/spufs/inode.c b/arch/powerpc/platforms/cell/spufs/inode.c index 690ca7b0dcf6..2c8b8091250f 100644 --- a/arch/powerpc/platforms/cell/spufs/inode.c +++ b/arch/powerpc/platforms/cell/spufs/inode.c | |||
@@ -659,7 +659,7 @@ enum { | |||
659 | Opt_uid, Opt_gid, Opt_mode, Opt_debug, Opt_err, | 659 | Opt_uid, Opt_gid, Opt_mode, Opt_debug, Opt_err, |
660 | }; | 660 | }; |
661 | 661 | ||
662 | static match_table_t spufs_tokens = { | 662 | static const match_table_t spufs_tokens = { |
663 | { Opt_uid, "uid=%d" }, | 663 | { Opt_uid, "uid=%d" }, |
664 | { Opt_gid, "gid=%d" }, | 664 | { Opt_gid, "gid=%d" }, |
665 | { Opt_mode, "mode=%o" }, | 665 | { Opt_mode, "mode=%o" }, |
diff --git a/arch/s390/hypfs/inode.c b/arch/s390/hypfs/inode.c index 7383781f3e6a..36313801cd5c 100644 --- a/arch/s390/hypfs/inode.c +++ b/arch/s390/hypfs/inode.c | |||
@@ -219,7 +219,7 @@ static int hypfs_release(struct inode *inode, struct file *filp) | |||
219 | 219 | ||
220 | enum { opt_uid, opt_gid, opt_err }; | 220 | enum { opt_uid, opt_gid, opt_err }; |
221 | 221 | ||
222 | static match_table_t hypfs_tokens = { | 222 | static const match_table_t hypfs_tokens = { |
223 | {opt_uid, "uid=%u"}, | 223 | {opt_uid, "uid=%u"}, |
224 | {opt_gid, "gid=%u"}, | 224 | {opt_gid, "gid=%u"}, |
225 | {opt_err, NULL} | 225 | {opt_err, NULL} |