Skip to content

Commit

Permalink
hpfs: switch to ->iterate_shared()
Browse files Browse the repository at this point in the history
NOTE: the only reason we can do that without ->i_rdir_offs races
is that hpfs_lock() serializes everything in there anyway.  It's
not that hard to get rid of, but not as part of this series...

Signed-off-by: Al Viro <[email protected]>
  • Loading branch information
Al Viro committed May 12, 2016
1 parent e82c314 commit 7d674b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/hpfs/dir.c
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ const struct file_operations hpfs_dir_ops =
{
.llseek = hpfs_dir_lseek,
.read = generic_read_dir,
.iterate = hpfs_readdir,
.iterate_shared = hpfs_readdir,
.release = hpfs_dir_release,
.fsync = hpfs_file_fsync,
.unlocked_ioctl = hpfs_ioctl,
Expand Down

0 comments on commit 7d674b3

Please sign in to comment.