Lines Matching refs:table

131 	unsigned long *table = __va(asce & PAGE_MASK);  in dump_pagetable()  local
136 table = table + ((address >> 53) & 0x7ff); in dump_pagetable()
137 if (bad_address(table)) in dump_pagetable()
139 pr_cont("R1:%016lx ", *table); in dump_pagetable()
140 if (*table & _REGION_ENTRY_INVALID) in dump_pagetable()
142 table = (unsigned long *)(*table & _REGION_ENTRY_ORIGIN); in dump_pagetable()
145 table = table + ((address >> 42) & 0x7ff); in dump_pagetable()
146 if (bad_address(table)) in dump_pagetable()
148 pr_cont("R2:%016lx ", *table); in dump_pagetable()
149 if (*table & _REGION_ENTRY_INVALID) in dump_pagetable()
151 table = (unsigned long *)(*table & _REGION_ENTRY_ORIGIN); in dump_pagetable()
154 table = table + ((address >> 31) & 0x7ff); in dump_pagetable()
155 if (bad_address(table)) in dump_pagetable()
157 pr_cont("R3:%016lx ", *table); in dump_pagetable()
158 if (*table & (_REGION_ENTRY_INVALID | _REGION3_ENTRY_LARGE)) in dump_pagetable()
160 table = (unsigned long *)(*table & _REGION_ENTRY_ORIGIN); in dump_pagetable()
163 table = table + ((address >> 20) & 0x7ff); in dump_pagetable()
164 if (bad_address(table)) in dump_pagetable()
166 pr_cont("S:%016lx ", *table); in dump_pagetable()
167 if (*table & (_SEGMENT_ENTRY_INVALID | _SEGMENT_ENTRY_LARGE)) in dump_pagetable()
169 table = (unsigned long *)(*table & _SEGMENT_ENTRY_ORIGIN); in dump_pagetable()
171 table = table + ((address >> 12) & 0xff); in dump_pagetable()
172 if (bad_address(table)) in dump_pagetable()
174 pr_cont("P:%016lx ", *table); in dump_pagetable()