Skip to content
Commit 02a48436 authored by Mikulas Patocka's avatar Mikulas Patocka Committed by Jens Axboe
Browse files

brd: fix overflow in __brd_direct_access



The code in __brd_direct_access multiplies the pgoff variable by page size
and divides it by 512. It can cause overflow on 32-bit architectures. The
overflow happens if we create ramdisk larger than 4G and use it as a
sparse device.

This patch replaces multiplication and division with multiplication by the
number of sectors per page.

Reviewed-by: default avatarDan Williams <dan.j.williams@intel.com>
Signed-off-by: default avatarMikulas Patocka <mpatocka@redhat.com>
Fixes: 1647b9b9

 ("brd: add dax_operations support")
Cc: stable@vger.kernel.org	# 4.12+
Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent 820bf5c4
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment