diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2016-05-10 14:24:57 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2016-05-10 14:24:57 -0400 |
commit | e23e9aa75283ac093421ca71339ec4eb1afbe8be (patch) | |
tree | 5a89705bdafab01a7752a0baaec61de4a9e3e605 /fs/befs/linuxvfs.c | |
parent | 22341d8f33084c575ce5b7ea63b07d7290b68e2d (diff) |
befs: switch to ->iterate_shared()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/befs/linuxvfs.c')
-rw-r--r-- | fs/befs/linuxvfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/befs/linuxvfs.c b/fs/befs/linuxvfs.c index f168bc8f6212..71112aa07d84 100644 --- a/fs/befs/linuxvfs.c +++ b/fs/befs/linuxvfs.c | |||
@@ -66,7 +66,7 @@ static struct kmem_cache *befs_inode_cachep; | |||
66 | 66 | ||
67 | static const struct file_operations befs_dir_operations = { | 67 | static const struct file_operations befs_dir_operations = { |
68 | .read = generic_read_dir, | 68 | .read = generic_read_dir, |
69 | .iterate = befs_readdir, | 69 | .iterate_shared = befs_readdir, |
70 | .llseek = generic_file_llseek, | 70 | .llseek = generic_file_llseek, |
71 | }; | 71 | }; |
72 | 72 | ||