diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2016-05-18 10:28:45 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-05-18 10:28:45 -0700 |
commit | e34df3344d7b6f284e958147d7225faa340a1f39 (patch) | |
tree | cd721c5f49f27527dc7784497903c4be0ac842b7 /fs/btrfs | |
parent | 442c9ac989d71599ebc39f4ea4d5b0e64996904b (diff) | |
parent | 9f5418010940236b2c39ea53b99055ca26ff1279 (diff) | |
download | blackbird-obmc-linux-e34df3344d7b6f284e958147d7225faa340a1f39.tar.gz blackbird-obmc-linux-e34df3344d7b6f284e958147d7225faa340a1f39.zip |
Merge branch 'work.lookups' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
Pull parallel lookup fixups from Al Viro:
"Fix for xfs parallel readdir (turns out the cxfs exposure was not
enough to catch all problems), and a reversion of btrfs back to
->iterate() until the fs/btrfs/delayed-inode.c gets fixed"
* 'work.lookups' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
xfs: concurrent readdir hangs on data buffer locks
Revert "btrfs: switch to ->iterate_shared()"
Diffstat (limited to 'fs/btrfs')
-rw-r--r-- | fs/btrfs/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index 6e1ae72b8949..6b7fe291a174 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c @@ -10181,7 +10181,7 @@ static const struct inode_operations btrfs_dir_ro_inode_operations = { static const struct file_operations btrfs_dir_file_operations = { .llseek = generic_file_llseek, .read = generic_read_dir, - .iterate_shared = btrfs_real_readdir, + .iterate = btrfs_real_readdir, .unlocked_ioctl = btrfs_ioctl, #ifdef CONFIG_COMPAT .compat_ioctl = btrfs_ioctl, |