aboutsummaryrefslogtreecommitdiffstats
path: root/fs/orangefs
diff options
context:
space:
mode:
authorMike Marshall <hubcap@omnibond.com>2022-10-03 13:05:38 -0400
committerMike Marshall <hubcap@omnibond.com>2022-10-03 13:05:38 -0400
commit2ad4b6f5e1179f3879b6d4392070039e32ce55a3 (patch)
tree17464c33c7bc15780b3f19c53249aa3e2c3ba39a /fs/orangefs
parent4fe89d07dcc2804c8b562f6c7896a45643d34b2f (diff)
downloadlinux-2ad4b6f5e1179f3879b6d4392070039e32ce55a3.tar.gz
Orangefs: change iterate to iterate_shared
Changed .iterate to .iterate_shared in orangefs_dir_operations. I didn't change anything else, there were no xfstests regressions and no problem with any of my other tests... Signed-off-by: Mike Marshall <hubcap@omnibond.com>
Diffstat (limited to 'fs/orangefs')
-rw-r--r--fs/orangefs/dir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/orangefs/dir.c b/fs/orangefs/dir.c
index e2c2699d80162..9cacce5d55c1b 100644
--- a/fs/orangefs/dir.c
+++ b/fs/orangefs/dir.c
@@ -398,7 +398,7 @@ static int orangefs_dir_release(struct inode *inode, struct file *file)
const struct file_operations orangefs_dir_operations = {
.llseek = orangefs_dir_llseek,
.read = generic_read_dir,
- .iterate = orangefs_dir_iterate,
+ .iterate_shared = orangefs_dir_iterate,
.open = orangefs_dir_open,
.release = orangefs_dir_release
};