constify dentry_operations: NFS
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
@@ -899,7 +899,7 @@ static void nfs_dentry_iput(struct dentry *dentry, struct inode *inode)
|
||||
iput(inode);
|
||||
}
|
||||
|
||||
struct dentry_operations nfs_dentry_operations = {
|
||||
const struct dentry_operations nfs_dentry_operations = {
|
||||
.d_revalidate = nfs_lookup_revalidate,
|
||||
.d_delete = nfs_dentry_delete,
|
||||
.d_iput = nfs_dentry_iput,
|
||||
@@ -967,7 +967,7 @@ out:
|
||||
#ifdef CONFIG_NFS_V4
|
||||
static int nfs_open_revalidate(struct dentry *, struct nameidata *);
|
||||
|
||||
struct dentry_operations nfs4_dentry_operations = {
|
||||
const struct dentry_operations nfs4_dentry_operations = {
|
||||
.d_revalidate = nfs_open_revalidate,
|
||||
.d_delete = nfs_dentry_delete,
|
||||
.d_iput = nfs_dentry_iput,
|
||||
|
Reference in New Issue
Block a user