Searched refs:savesegment (Results 1 – 12 of 12) sorted by relevance
/arch/x86/power/ |
D | cpu.c | 82 savesegment(es, ctxt->es); in __save_processor_state() 83 savesegment(fs, ctxt->fs); in __save_processor_state() 84 savesegment(gs, ctxt->gs); in __save_processor_state() 85 savesegment(ss, ctxt->ss); in __save_processor_state()
|
/arch/x86/include/asm/ |
D | segment.h | 242 #define savesegment(seg, value) \ macro 250 #define get_user_gs(regs) (u16)({unsigned long v; savesegment(gs, v); v;}) 253 #define lazy_save_gs(v) savesegment(gs, (v))
|
D | elf.h | 144 savesegment(gs, pr_reg[10]); \
|
/arch/x86/kernel/ |
D | process_64.c | 162 savesegment(gs, p->thread.gsindex); in copy_thread() 164 savesegment(fs, p->thread.fsindex); in copy_thread() 166 savesegment(es, p->thread.es); in copy_thread() 167 savesegment(ds, p->thread.ds); in copy_thread() 291 savesegment(es, prev->es); in __switch_to() 295 savesegment(ds, prev->ds); in __switch_to() 305 savesegment(fs, fsindex); in __switch_to() 306 savesegment(gs, gsindex); in __switch_to() 521 savesegment(gs, gsindex); in do_arch_prctl()
|
D | process_32.c | 83 savesegment(ss, ss); in __show_regs() 84 savesegment(gs, gs); in __show_regs()
|
D | dumpstack.c | 276 savesegment(ss, ss); in __die()
|
D | i387.c | 459 savesegment(ds, env->fos); in convert_from_fxsr()
|
D | apm_32.c | 564 savesegment(fs, saved_fs); savesegment(gs, saved_gs)
|
/arch/x86/ia32/ |
D | ia32_aout.c | 86 savesegment(fs, fs); in dump_thread32() 88 savesegment(gs, gs); in dump_thread32()
|
D | ia32_signal.c | 140 #define get_user_seg(seg) ({ unsigned int v; savesegment(seg, v); v; })
|
/arch/x86/kvm/ |
D | vmx.c | 1611 savesegment(fs, vmx->host_state.fs_sel); in vmx_save_host_state() 1619 savesegment(gs, vmx->host_state.gs_sel); in vmx_save_host_state() 1628 savesegment(ds, vmx->host_state.ds_sel); in vmx_save_host_state() 1629 savesegment(es, vmx->host_state.es_sel); in vmx_save_host_state()
|
D | svm.c | 1299 savesegment(fs, svm->host.fs); in svm_vcpu_load() 1300 savesegment(gs, svm->host.gs); in svm_vcpu_load()
|