diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2009-02-20 05:57:07 +0000 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2009-03-27 14:44:01 -0400 |
commit | 4fd03e84d8f4e6304cef19698a24dee84039ef01 (patch) | |
tree | c3174fbf23832afb5cf110c3362e30e6b6eedc0a /fs/cifs/dir.c | |
parent | 79be57cc7fd25563c73ab26b0c28ff6ad0d618fc (diff) | |
download | op-kernel-dev-4fd03e84d8f4e6304cef19698a24dee84039ef01.zip op-kernel-dev-4fd03e84d8f4e6304cef19698a24dee84039ef01.tar.gz |
constify dentry_operations: CIFS
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/cifs/dir.c')
-rw-r--r-- | fs/cifs/dir.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/cifs/dir.c b/fs/cifs/dir.c index 89fb728..43cc0fd 100644 --- a/fs/cifs/dir.c +++ b/fs/cifs/dir.c @@ -699,7 +699,7 @@ cifs_d_revalidate(struct dentry *direntry, struct nameidata *nd) return rc; } */ -struct dentry_operations cifs_dentry_ops = { +const struct dentry_operations cifs_dentry_ops = { .d_revalidate = cifs_d_revalidate, /* d_delete: cifs_d_delete, */ /* not needed except for debugging */ }; @@ -737,7 +737,7 @@ static int cifs_ci_compare(struct dentry *dentry, struct qstr *a, return 1; } -struct dentry_operations cifs_ci_dentry_ops = { +const struct dentry_operations cifs_ci_dentry_ops = { .d_revalidate = cifs_d_revalidate, .d_hash = cifs_ci_hash, .d_compare = cifs_ci_compare, |