diff options
Diffstat (limited to 'kernel/dir.c')
-rw-r--r-- | kernel/dir.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/kernel/dir.c b/kernel/dir.c index 7e92f67..b2fbca2 100644 --- a/kernel/dir.c +++ b/kernel/dir.c @@ -1208,7 +1208,11 @@ static int fuse_removexattr(struct dentry *entry, const char *name) #endif static struct inode_operations fuse_dir_inode_operations = { +#ifdef KERNEL_2_6 .lookup = fuse_lookup, +#else + .lookup = fuse_lookup_2_4, +#endif .mkdir = fuse_mkdir, .symlink = fuse_symlink, .unlink = fuse_unlink, |