commit | 4269590a72934bb901b33b686e20605bf66653c4 | [log] [tgz] |
---|---|---|
author | Al Viro <viro@zeniv.linux.org.uk> | Fri Feb 20 05:59:13 2009 +0000 |
committer | Al Viro <viro@zeniv.linux.org.uk> | Fri Mar 27 14:44:01 2009 -0400 |
tree | 6e70362f5f29c0a0da151291ade3d3db9123fd4b | |
parent | d72f71eb0edd629c95715aa7305b0259d3581e34 [diff] [blame] |
constify dentry_operations: FUSE Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
diff --git a/fs/fuse/dir.c b/fs/fuse/dir.c index fdff346..06da052 100644 --- a/fs/fuse/dir.c +++ b/fs/fuse/dir.c
@@ -224,7 +224,7 @@ return !nodeid || nodeid == FUSE_ROOT_ID; } -struct dentry_operations fuse_dentry_operations = { +const struct dentry_operations fuse_dentry_operations = { .d_revalidate = fuse_dentry_revalidate, };