diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2009-02-20 05:56:19 +0000 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2009-03-27 14:44:00 -0400 |
commit | 08f11513fa6f712506edb99327f7d051da9d860f (patch) | |
tree | 4c174f5d9d573187687c4c638d90a4dee69cce1a /fs/autofs | |
parent | a488257ce5a55c53973671218791296463698d07 (diff) | |
download | op-kernel-dev-08f11513fa6f712506edb99327f7d051da9d860f.zip op-kernel-dev-08f11513fa6f712506edb99327f7d051da9d860f.tar.gz |
constify dentry_operations: autofs, autofs4
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/autofs')
-rw-r--r-- | fs/autofs/root.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/autofs/root.c b/fs/autofs/root.c index 8aacade..4a1401c 100644 --- a/fs/autofs/root.c +++ b/fs/autofs/root.c @@ -192,7 +192,7 @@ static int autofs_revalidate(struct dentry * dentry, struct nameidata *nd) return 1; } -static struct dentry_operations autofs_dentry_operations = { +static const struct dentry_operations autofs_dentry_operations = { .d_revalidate = autofs_revalidate, }; |