Commit 2ad4b6f5 authored by Mike Marshall's avatar Mike Marshall

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: default avatarMike Marshall <hubcap@omnibond.com>
parent 4fe89d07
...@@ -398,7 +398,7 @@ static int orangefs_dir_release(struct inode *inode, struct file *file) ...@@ -398,7 +398,7 @@ static int orangefs_dir_release(struct inode *inode, struct file *file)
const struct file_operations orangefs_dir_operations = { const struct file_operations orangefs_dir_operations = {
.llseek = orangefs_dir_llseek, .llseek = orangefs_dir_llseek,
.read = generic_read_dir, .read = generic_read_dir,
.iterate = orangefs_dir_iterate, .iterate_shared = orangefs_dir_iterate,
.open = orangefs_dir_open, .open = orangefs_dir_open,
.release = orangefs_dir_release .release = orangefs_dir_release
}; };
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment