diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2016-05-10 18:24:57 (GMT) |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2016-05-10 18:24:57 (GMT) |
commit | e23e9aa75283ac093421ca71339ec4eb1afbe8be (patch) | |
tree | 5a89705bdafab01a7752a0baaec61de4a9e3e605 /fs/befs/linuxvfs.c | |
parent | 22341d8f33084c575ce5b7ea63b07d7290b68e2d (diff) | |
download | linux-e23e9aa75283ac093421ca71339ec4eb1afbe8be.tar.xz |
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 f168bc8f..71112aa 100644 --- a/fs/befs/linuxvfs.c +++ b/fs/befs/linuxvfs.c @@ -66,7 +66,7 @@ static struct kmem_cache *befs_inode_cachep; static const struct file_operations befs_dir_operations = { .read = generic_read_dir, - .iterate = befs_readdir, + .iterate_shared = befs_readdir, .llseek = generic_file_llseek, }; |