Lines Matching refs:next_tss_desc
3244 struct desc_struct curr_tss_desc, next_tss_desc; in emulator_do_task_switch() local
3254 ret = read_segment_descriptor(ctxt, tss_selector, &next_tss_desc, &desc_addr); in emulator_do_task_switch()
3288 desc_limit = desc_limit_scaled(&next_tss_desc); in emulator_do_task_switch()
3289 if (!next_tss_desc.p || in emulator_do_task_switch()
3290 ((desc_limit < 0x67 && (next_tss_desc.type & 8)) || in emulator_do_task_switch()
3308 if (next_tss_desc.type & 8) in emulator_do_task_switch()
3310 old_tss_base, &next_tss_desc); in emulator_do_task_switch()
3313 old_tss_base, &next_tss_desc); in emulator_do_task_switch()
3321 next_tss_desc.type |= (1 << 1); /* set busy flag */ in emulator_do_task_switch()
3322 write_segment_descriptor(ctxt, tss_selector, &next_tss_desc); in emulator_do_task_switch()
3326 ops->set_segment(ctxt, tss_selector, &next_tss_desc, 0, VCPU_SREG_TR); in emulator_do_task_switch()
3329 ctxt->op_bytes = ctxt->ad_bytes = (next_tss_desc.type & 8) ? 4 : 2; in emulator_do_task_switch()