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/sysv | |
parent | 4e82901cd6d1af21ae232ae835c36d8230c809e8 (diff) |
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/sysv')
-rw-r--r-- | fs/sysv/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/sysv/dir.c b/fs/sysv/dir.c index c0f0a3e643eb..2661b77fc8a7 100644 --- a/fs/sysv/dir.c +++ b/fs/sysv/dir.c | |||
@@ -23,7 +23,7 @@ static int sysv_readdir(struct file *, struct dir_context *); | |||
23 | const struct file_operations sysv_dir_operations = { | 23 | const struct file_operations sysv_dir_operations = { |
24 | .llseek = generic_file_llseek, | 24 | .llseek = generic_file_llseek, |
25 | .read = generic_read_dir, | 25 | .read = generic_read_dir, |
26 | .iterate = sysv_readdir, | 26 | .iterate_shared = sysv_readdir, |
27 | .fsync = generic_file_fsync, | 27 | .fsync = generic_file_fsync, |
28 | }; | 28 | }; |
29 | 29 | ||