diff options
author | Yangtao Li <frank.li@vivo.com> | 2023-03-10 06:08:20 +0300 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2023-03-13 13:16:16 +0300 |
commit | f768dc3cf74983107464bcd773167c92b85cb8f2 (patch) | |
tree | 46437cdc6d7dc8cb78c38bcbf18e3c7e2dced548 /fs/udf | |
parent | 96acbef66b44c0fb25d3ab9c632a9a750e678ce7 (diff) | |
download | linux-f768dc3cf74983107464bcd773167c92b85cb8f2.tar.xz |
udf: use wrapper i_blocksize() in udf_discard_prealloc()
Convert to use i_blocksize() for readability.
Signed-off-by: Yangtao Li <frank.li@vivo.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Message-Id: <20230310030821.66090-2-frank.li@vivo.com>
Diffstat (limited to 'fs/udf')
-rw-r--r-- | fs/udf/truncate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/udf/truncate.c b/fs/udf/truncate.c index 871856c69df5..2e7ba234bab8 100644 --- a/fs/udf/truncate.c +++ b/fs/udf/truncate.c @@ -127,7 +127,7 @@ void udf_discard_prealloc(struct inode *inode) uint64_t lbcount = 0; int8_t etype = -1; struct udf_inode_info *iinfo = UDF_I(inode); - int bsize = 1 << inode->i_blkbits; + int bsize = i_blocksize(inode); if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB || ALIGN(inode->i_size, bsize) == ALIGN(iinfo->i_lenExtents, bsize)) @@ -149,7 +149,7 @@ void udf_discard_prealloc(struct inode *inode) lbcount -= elen; udf_delete_aext(inode, prev_epos); udf_free_blocks(inode->i_sb, inode, &eloc, 0, - DIV_ROUND_UP(elen, 1 << inode->i_blkbits)); + DIV_ROUND_UP(elen, bsize)); } /* This inode entry is in-memory only and thus we don't have to mark * the inode dirty */ |