[PATCH] ufs2: tindirect truncate fix
During modification of code to support UFS2 writing, the case with "three indirect" blocks in truncate path was missed, this patch fixes this situation. Signed-off-by: Evgeniy Dushistov <dushistov@mail.ru> Acked-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
4b25a37e20
commit
0465fc0a1c
@@ -348,7 +348,7 @@ static int ufs_trunc_tindirect(struct inode *inode)
|
|||||||
}
|
}
|
||||||
|
|
||||||
for (i = tindirect_block ; i < uspi->s_apb ; i++) {
|
for (i = tindirect_block ; i < uspi->s_apb ; i++) {
|
||||||
tind = ubh_get_addr32 (tind_bh, i);
|
tind = ubh_get_data_ptr(uspi, tind_bh, i);
|
||||||
retry |= ufs_trunc_dindirect(inode, UFS_NDADDR +
|
retry |= ufs_trunc_dindirect(inode, UFS_NDADDR +
|
||||||
uspi->s_apb + ((i + 1) << uspi->s_2apbshift), tind);
|
uspi->s_apb + ((i + 1) << uspi->s_2apbshift), tind);
|
||||||
ubh_mark_buffer_dirty(tind_bh);
|
ubh_mark_buffer_dirty(tind_bh);
|
||||||
|
Reference in New Issue
Block a user