PF handler: print VM range's file path if available
Change-Id: I5ba55b19a0b874bc9f4b58e94bfc4afc440e6a8a
This commit is contained in:
committed by
Masamichi Takagi
parent
c0c80b71ca
commit
c32a5e261b
@ -1276,8 +1276,9 @@ static void unhandled_page_fault(struct thread *thread, void *fault_addr,
|
||||
|
||||
range = lookup_process_memory_range(vm, address, address+1);
|
||||
if (range) {
|
||||
__kprintf("address is in range, flag: 0x%lx\n",
|
||||
range->flag);
|
||||
__kprintf("address is in range, flag: 0x%lx (%s)\n",
|
||||
range->flag,
|
||||
range->memobj ? range->memobj->path : "");
|
||||
ihk_mc_pt_print_pte(vm->address_space->page_table,
|
||||
(void *)address);
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user