aboutsummaryrefslogtreecommitdiffstats
path: root/fs/hostfs
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2016-05-12 19:49:30 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2016-05-12 19:49:30 -0400
commit552a9d489f1412beb5914f0c64a54d921a9c6624 (patch)
treee3c59b96d6c52d769c807974a57381dc261513cf /fs/hostfs
parenthpfs: switch to ->iterate_shared() (diff)
downloadlinux-dev-552a9d489f1412beb5914f0c64a54d921a9c6624.tar.xz
linux-dev-552a9d489f1412beb5914f0c64a54d921a9c6624.zip
hostfs: switch to ->iterate_shared()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/hostfs')
-rw-r--r--fs/hostfs/hostfs_kern.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/hostfs/hostfs_kern.c b/fs/hostfs/hostfs_kern.c
index 7016653f3e41..5c57654927a6 100644
--- a/fs/hostfs/hostfs_kern.c
+++ b/fs/hostfs/hostfs_kern.c
@@ -398,7 +398,7 @@ static const struct file_operations hostfs_file_fops = {
static const struct file_operations hostfs_dir_fops = {
.llseek = generic_file_llseek,
- .iterate = hostfs_readdir,
+ .iterate_shared = hostfs_readdir,
.read = generic_read_dir,
.open = hostfs_open,
.fsync = hostfs_fsync,