mmu: replace ASSERT with panic in fetch_page_table_offset

all callers for fetch_page_table_offset should already make sure
it will not come to an unknown table_leve, so just panic here.

Signed-off-by: Jason Chen CJ <jason.cj.chen@intel.com>
This commit is contained in:
Jason Chen CJ 2018-04-05 08:43:19 +08:00 committed by Jack Ren
parent c2f86f23c3
commit a68850e00f
1 changed files with 4 additions and 2 deletions

View File

@ -325,8 +325,10 @@ static uint32_t fetch_page_table_offset(void *addr, uint32_t table_level)
break;
default:
pr_err("Wrong page table level = 0x%lx", table_level);
ASSERT(false, "Wrong page table level");
/* all callers should already make sure it will not come
* to here
*/
panic("Wrong page table level");
break;
}