|
@@ -12,7 +12,7 @@ static int efs_readdir(struct file *, struct dir_context *);
|
|
|
const struct file_operations efs_dir_operations = {
|
|
|
.llseek = generic_file_llseek,
|
|
|
.read = generic_read_dir,
|
|
|
- .iterate = efs_readdir,
|
|
|
+ .iterate_shared = efs_readdir,
|
|
|
};
|
|
|
|
|
|
const struct inode_operations efs_dir_inode_operations = {
|
|
@@ -100,4 +100,3 @@ static int efs_readdir(struct file *file, struct dir_context *ctx)
|
|
|
ctx->pos = (block << EFS_DIRBSIZE_BITS) | slot;
|
|
|
return 0;
|
|
|
}
|
|
|
-
|