From: Al Viro Date: Thu, 12 May 2016 23:49:30 +0000 (-0400) Subject: hostfs: switch to ->iterate_shared() X-Git-Tag: v4.7-rc1~144^2~5 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=552a9d489f1412beb5914f0c64a54d921a9c6624;p=karo-tx-linux.git hostfs: switch to ->iterate_shared() Signed-off-by: Al Viro --- 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,