diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2016-04-20 23:42:46 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2016-05-02 19:49:32 -0400 |
commit | 3b0a3c1ac1598722fc289da19219d14f2a37b31f (patch) | |
tree | 456ca8434e23427a7326c9b048f6fe4ed0d5e6b3 /fs/xfs/xfs_file.c | |
parent | 4e82901cd6d1af21ae232ae835c36d8230c809e8 (diff) | |
download | linux-3b0a3c1ac1598722fc289da19219d14f2a37b31f.tar.bz2 |
simple local filesystems: switch to ->iterate_shared()
no changes needed (XFS isn't simple, but it has the same parallelism
in the interesting parts exercised from CXFS).
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/xfs/xfs_file.c')
-rw-r--r-- | fs/xfs/xfs_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_file.c b/fs/xfs/xfs_file.c index 569938a4a357..345fd85a1997 100644 --- a/fs/xfs/xfs_file.c +++ b/fs/xfs/xfs_file.c @@ -1714,7 +1714,7 @@ const struct file_operations xfs_file_operations = { const struct file_operations xfs_dir_file_operations = { .open = xfs_dir_open, .read = generic_read_dir, - .iterate = xfs_file_readdir, + .iterate_shared = xfs_file_readdir, .llseek = generic_file_llseek, .unlocked_ioctl = xfs_file_ioctl, #ifdef CONFIG_COMPAT |