Btrfs: remove old tree_root case in btrfs_read_locked_inode()
commit67ade058ef
upstream. As Jeff explained inc2951f32d3
("btrfs: remove old tree_root dirent processing in btrfs_real_readdir()"), supporting this old format is no longer necessary since the Btrfs magic number has been updated since we changed to the current format. There are other places where we still handle this old format, but since this is part of a fix that is going to stable, I'm only removing this one for now. Signed-off-by: Omar Sandoval <osandov@fb.com> Reviewed-by: David Sterba <dsterba@suse.com> Signed-off-by: Chris Mason <clm@fb.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
959f9709c0
commit
79babd4a6c
@ -3819,10 +3819,7 @@ cache_acl:
|
|||||||
break;
|
break;
|
||||||
case S_IFDIR:
|
case S_IFDIR:
|
||||||
inode->i_fop = &btrfs_dir_file_operations;
|
inode->i_fop = &btrfs_dir_file_operations;
|
||||||
if (root == root->fs_info->tree_root)
|
inode->i_op = &btrfs_dir_inode_operations;
|
||||||
inode->i_op = &btrfs_dir_ro_inode_operations;
|
|
||||||
else
|
|
||||||
inode->i_op = &btrfs_dir_inode_operations;
|
|
||||||
break;
|
break;
|
||||||
case S_IFLNK:
|
case S_IFLNK:
|
||||||
inode->i_op = &btrfs_symlink_inode_operations;
|
inode->i_op = &btrfs_symlink_inode_operations;
|
||||||
|
Reference in New Issue
Block a user