Lines Matching refs:address
128 static void dump_pagetable(unsigned long asce, unsigned long address) in dump_pagetable() argument
135 table = table + ((address >> 53) & 0x7ff); in dump_pagetable()
144 table = table + ((address >> 42) & 0x7ff); in dump_pagetable()
153 table = table + ((address >> 31) & 0x7ff); in dump_pagetable()
162 table = table + ((address >> 20) & 0x7ff); in dump_pagetable()
170 table = table + ((address >> 12) & 0xff); in dump_pagetable()
256 unsigned long address; in do_no_context() local
269 address = regs->int_parm_long & __FAIL_ADDR_MASK; in do_no_context()
379 unsigned long address; in do_exception() local
405 address = trans_exc_code & __FAIL_ADDR_MASK; in do_exception()
406 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS, 1, regs, address); in do_exception()
418 current->thread.gmap_addr = address; in do_exception()
419 address = __gmap_translate(gmap, address); in do_exception()
420 if (address == -EFAULT) { in do_exception()
431 vma = find_vma(mm, address); in do_exception()
435 if (unlikely(vma->vm_start > address)) { in do_exception()
438 if (expand_stack(vma, address)) in do_exception()
451 address &= HPAGE_MASK; in do_exception()
457 fault = handle_mm_fault(mm, vma, address, flags); in do_exception()
475 regs, address); in do_exception()
479 regs, address); in do_exception()
502 address = __gmap_link(gmap, current->thread.gmap_addr, in do_exception()
503 address); in do_exception()
504 if (address == -EFAULT) { in do_exception()
508 if (address == -ENOMEM) { in do_exception()