mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-08-18 11:53:05 +08:00
[libcpu][riscv]纠正pv_offset的对齐检查
This commit is contained in:
@@ -536,7 +536,7 @@ void rt_hw_mem_setup_early(void)
|
||||
|
||||
if (pv_off)
|
||||
{
|
||||
if (pv_off & (1ul << (ARCH_INDEX_WIDTH * 2 + ARCH_PAGE_SHIFT)))
|
||||
if (pv_off & ((1ul << (ARCH_INDEX_WIDTH * 2 + ARCH_PAGE_SHIFT)) - 1))
|
||||
{
|
||||
LOG_E("%s: not aligned virtual address. pv_offset %p", __func__,
|
||||
pv_off);
|
||||
|
||||
Reference in New Issue
Block a user