diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2007-12-12 19:01:23 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2007-12-12 19:01:23 +0000 |
commit | 4ae237a8d8077e524483c296d31584034807f118 (patch) | |
tree | 465875309fd259b72bb9a7560058d94fcc958b90 /kernel/inode.c | |
parent | 2429afb7f70da6706d65a06a34c4503daf151067 (diff) | |
download | libfuse-4ae237a8d8077e524483c296d31584034807f118.tar.gz |
fix
Diffstat (limited to 'kernel/inode.c')
-rw-r--r-- | kernel/inode.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/kernel/inode.c b/kernel/inode.c index 0e5e213..0a5900e 100644 --- a/kernel/inode.c +++ b/kernel/inode.c @@ -636,6 +636,8 @@ static struct dentry *fuse_get_dentry_old(struct super_block *sb, void *objp) return fuse_get_dentry(sb, objp); } +static struct export_operations fuse_export_operations; + static struct dentry *fuse_decode_fh(struct super_block *sb, u32 *fh, int fh_len, int fileid_type, int (*acceptable)(void *context, struct dentry *de), @@ -663,7 +665,7 @@ static struct dentry *fuse_decode_fh(struct super_block *sb, u32 *fh, handle.nodeid |= (u64) fh[1]; handle.generation = fh[2]; - return ret = fuse_export_operations. + return fuse_export_operations. find_exported_dentry(sb, &handle, &parent, acceptable, context); } |