xfs: fix integer truncation in xfs_bmap_remap_alloc
bno should be a xfs_fsblock_t, which is 64-bit wides instead of a xfs_aglock_t, which truncates the value to 32 bits. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com> Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
This commit is contained in:
Родитель
3b4683c294
Коммит
52813fb13f
|
@ -3863,7 +3863,7 @@ xfs_bmap_remap_alloc(
|
|||
{
|
||||
struct xfs_trans *tp = ap->tp;
|
||||
struct xfs_mount *mp = tp->t_mountp;
|
||||
xfs_agblock_t bno;
|
||||
xfs_fsblock_t bno;
|
||||
struct xfs_alloc_arg args;
|
||||
int error;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче