xfs: remove block number from inode lookup code
The block number comes from bulkstat based inode lookups to shortcut the mapping calculations. We ar enot able to trust anything from bulkstat, so drop the block number as well so that the correct lookups and mappings are always done. Signed-off-by: Dave Chinner <dchinner@redhat.com> Reviewed-by: Christoph Hellwig <hch@lst.de>
This commit is contained in:
committed by
Dave Chinner
parent
1920779e67
commit
7b6259e7a8
@ -133,7 +133,7 @@ xfs_nfs_get_inode(
|
||||
* send invalid file handles and we have to handle it gracefully..
|
||||
*/
|
||||
error = xfs_iget(mp, NULL, ino, XFS_IGET_UNTRUSTED,
|
||||
XFS_ILOCK_SHARED, &ip, 0);
|
||||
XFS_ILOCK_SHARED, &ip);
|
||||
if (error) {
|
||||
/*
|
||||
* EINVAL means the inode cluster doesn't exist anymore.
|
||||
|
Reference in New Issue
Block a user