提交 a785ce9c 编写于 作者: T Tan Xiaojun 提交者: Greg Kroah-Hartman

CMA: fix CONFIG_CMA_SIZE_MBYTES overflow in 64bit

In 64bit system, if you set CONFIG_CMA_SIZE_MBYTES>=2048, it will
overflow and size_bytes will be a big wrong number.

Set CONFIG_CMA_SIZE_MBYTES=2048 and you will get an info below
during system boot:

*********
cma: Failed to reserve 17592186042368 MiB
*********
Signed-off-by: NTan Xiaojun <tanxiaojun@huawei.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 b8b2c7d8
...@@ -46,7 +46,7 @@ struct cma *dma_contiguous_default_area; ...@@ -46,7 +46,7 @@ struct cma *dma_contiguous_default_area;
* Users, who want to set the size of global CMA area for their system * Users, who want to set the size of global CMA area for their system
* should use cma= kernel parameter. * should use cma= kernel parameter.
*/ */
static const phys_addr_t size_bytes = CMA_SIZE_MBYTES * SZ_1M; static const phys_addr_t size_bytes = (phys_addr_t)CMA_SIZE_MBYTES * SZ_1M;
static phys_addr_t size_cmdline = -1; static phys_addr_t size_cmdline = -1;
static phys_addr_t base_cmdline; static phys_addr_t base_cmdline;
static phys_addr_t limit_cmdline; static phys_addr_t limit_cmdline;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册