diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2013-05-22 21:06:00 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-06-29 12:57:02 +0400 |
commit | 3704412bdbf37ec836152f571ac74fe72220c05a (patch) | |
tree | 1c2f8711dfa53ca50201e2d280f90243fcd85c56 /fs/ocfs2/file.c | |
parent | 2c6a2473b800f8eadc94c9a711fee8671dd1a244 (diff) | |
download | blackbird-op-linux-3704412bdbf37ec836152f571ac74fe72220c05a.tar.gz blackbird-op-linux-3704412bdbf37ec836152f571ac74fe72220c05a.zip |
[readdir] convert ocfs2
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/ocfs2/file.c')
-rw-r--r-- | fs/ocfs2/file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ocfs2/file.c b/fs/ocfs2/file.c index ff54014a24ec..8a38714f1d92 100644 --- a/fs/ocfs2/file.c +++ b/fs/ocfs2/file.c @@ -2712,7 +2712,7 @@ const struct file_operations ocfs2_fops = { const struct file_operations ocfs2_dops = { .llseek = generic_file_llseek, .read = generic_read_dir, - .readdir = ocfs2_readdir, + .iterate = ocfs2_readdir, .fsync = ocfs2_sync_file, .release = ocfs2_dir_release, .open = ocfs2_dir_open, @@ -2759,7 +2759,7 @@ const struct file_operations ocfs2_fops_no_plocks = { const struct file_operations ocfs2_dops_no_plocks = { .llseek = generic_file_llseek, .read = generic_read_dir, - .readdir = ocfs2_readdir, + .iterate = ocfs2_readdir, .fsync = ocfs2_sync_file, .release = ocfs2_dir_release, .open = ocfs2_dir_open, |