• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/s390/kernel/

Lines Matching defs:per_info

68 	per_struct *per_info;
72 per_info = (per_struct *) &task->thread.per_info;
73 per_info->control_regs.bits.em_instruction_fetch =
74 per_info->single_step | per_info->instruction_fetch;
76 if (per_info->single_step) {
77 per_info->control_regs.bits.starting_addr = 0;
80 per_info->control_regs.bits.ending_addr = 0x7fffffffUL;
83 per_info->control_regs.bits.ending_addr = PSW_ADDR_INSN;
85 per_info->control_regs.bits.starting_addr =
86 per_info->starting_addr;
87 per_info->control_regs.bits.ending_addr =
88 per_info->ending_addr;
94 if (per_info->control_regs.words.cr[0] & PER_EM_MASK)
99 if (per_info->control_regs.bits.em_storage_alteration)
100 per_info->control_regs.bits.storage_alt_space_ctl = 1;
102 per_info->control_regs.bits.storage_alt_space_ctl = 0;
106 if (memcmp(&cr_words, &per_info->control_regs.words,
108 __ctl_load(per_info->control_regs.words, 9, 11);
114 task->thread.per_info.single_step = 1;
120 task->thread.per_info.single_step = 0;
205 } else if (addr < (addr_t) (&dummy->regs.per_info + 1)) {
207 * per_info is found in the thread structure
209 offset = addr - (addr_t) &dummy->regs.per_info;
210 tmp = *(addr_t *)((addr_t) &child->thread.per_info + offset);
312 } else if (addr < (addr_t) (&dummy->regs.per_info + 1)) {
314 * per_info is found in the thread structure
316 offset = addr - (addr_t) &dummy->regs.per_info;
317 *(addr_t *)((addr_t) &child->thread.per_info + offset) = data;
465 } else if (addr < (addr_t) (&dummy32->regs.per_info + 1)) {
467 * per_info is found in the thread structure
469 offset = addr - (addr_t) &dummy32->regs.per_info;
479 tmp = *(__u32 *)((addr_t) &child->thread.per_info + offset);
561 } else if (addr < (addr_t) (&dummy32->regs.per_info + 1)) {
563 * per_info is found in the thread structure.
565 offset = addr - (addr_t) &dummy32->regs.per_info;
582 *(__u32 *)((addr_t) &child->thread.per_info + offset) = tmp;