mirror of
https://github.com/torvalds/linux.git
synced 2026-05-26 08:02:27 +02:00
udf: Add handling of in-ICB files to udf_bmap()
Add detection of in-ICB files to udf_bmap() and return error in that case. This will allow us o use single address_space_operations in UDF. Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Jan Kara <jack@suse.cz>
This commit is contained in:
parent
c694e40ba2
commit
907c6c2ffa
|
|
@ -296,6 +296,10 @@ ssize_t udf_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
|
|||
|
||||
static sector_t udf_bmap(struct address_space *mapping, sector_t block)
|
||||
{
|
||||
struct udf_inode_info *iinfo = UDF_I(mapping->host);
|
||||
|
||||
if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
|
||||
return -EINVAL;
|
||||
return generic_block_bmap(mapping, block, udf_get_block);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user