Searched refs:tss (Results 1 - 18 of 18) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/i386/kernel/
H A Ddoublefault.c21 unsigned long gdt, tss; local
30 tss = *(u16 *)(gdt+2);
31 tss += *(u8 *)(gdt+4) << 16;
32 tss += *(u8 *)(gdt+7) << 24;
33 printk("double fault, tss at %08lx\n", tss);
35 if (ptr_ok(tss)) {
36 struct i386_hw_tss *t = (struct i386_hw_tss *)tss;
H A Dioport.c62 struct tss_struct * tss; local
92 tss = &per_cpu(init_tss, get_cpu());
114 * tss->io_bitmap_base to IO_BITMAP_OFFSET.
116 tss->x86_tss.io_bitmap_base = INVALID_IO_BITMAP_OFFSET_LAZY;
117 tss->io_bitmap_owner = NULL;
H A Dsysenter.c179 struct tss_struct *tss = &per_cpu(init_tss, cpu); local
186 tss->x86_tss.ss1 = __KERNEL_CS;
187 tss->x86_tss.esp1 = sizeof(struct tss_struct) + (unsigned long) tss;
189 wrmsr(MSR_IA32_SYSENTER_ESP, tss->x86_tss.esp1, 0);
H A Dprocess.c372 struct tss_struct *tss = &per_cpu(init_tss, cpu); local
380 memset(tss->io_bitmap, 0xff, tss->io_bitmap_max);
382 tss->io_bitmap_owner = NULL;
383 tss->io_bitmap_max = 0;
384 tss->x86_tss.io_bitmap_base = INVALID_IO_BITMAP_OFFSET;
542 struct tss_struct *tss)
563 tss->x86_tss.io_bitmap_base = INVALID_IO_BITMAP_OFFSET;
567 if (likely(next == tss->io_bitmap_owner)) {
573 tss
541 __switch_to_xtra(struct task_struct *next_p, struct tss_struct *tss) argument
647 struct tss_struct *tss = &per_cpu(init_tss, cpu); local
[all...]
H A Dtraps.c570 struct tss_struct *tss = &per_cpu(init_tss, cpu); local
580 if (tss->x86_tss.io_bitmap_base == INVALID_IO_BITMAP_OFFSET_LAZY &&
582 memcpy(tss->io_bitmap, thread->io_bitmap_ptr,
588 if (thread->io_bitmap_max < tss->io_bitmap_max)
589 memset((char *) tss->io_bitmap +
591 tss->io_bitmap_max - thread->io_bitmap_max);
592 tss->io_bitmap_max = thread->io_bitmap_max;
593 tss->x86_tss.io_bitmap_base = IO_BITMAP_OFFSET;
594 tss->io_bitmap_owner = thread;
H A Dvm86.c128 struct tss_struct *tss; local
151 tss = &per_cpu(init_tss, get_cpu());
154 load_esp0(tss, &current->thread);
282 struct tss_struct *tss; local
327 tss = &per_cpu(init_tss, get_cpu());
331 load_esp0(tss, &tsk->thread);
H A Dvmi.c210 static void vmi_load_esp0(struct tss_struct *tss, argument
213 tss->x86_tss.esp0 = thread->esp0;
216 if (unlikely(tss->x86_tss.ss1 != thread->sysenter_cs)) {
217 tss->x86_tss.ss1 = thread->sysenter_cs;
220 vmi_ops.set_kernel_stack(__KERNEL_DS, tss->x86_tss.esp0);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/x86_64/kernel/
H A Dioport.c39 struct tss_struct * tss; local
69 tss = &per_cpu(init_tss, get_cpu());
88 memcpy(tss->io_bitmap, t->io_bitmap_ptr, bytes_updated);
H A Dprocess.c370 struct tss_struct *tss = &per_cpu(init_tss, get_cpu()); local
378 memset(tss->io_bitmap, 0xff, t->io_bitmap_max);
530 struct tss_struct *tss)
552 memcpy(tss->io_bitmap, next->io_bitmap_ptr,
558 memset(tss->io_bitmap, 0xff, prev->io_bitmap_max);
577 struct tss_struct *tss = &per_cpu(init_tss, cpu); local
586 tss->rsp0 = next->rsp0;
665 __switch_to_xtra(prev_p, next_p, tss);
528 __switch_to_xtra(struct task_struct *prev_p, struct task_struct *next_p, struct tss_struct *tss) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-i386/
H A Dsuspend.h18 u16 tss; member in struct:saved_context
H A Dprocessor.h502 static inline void native_load_esp0(struct tss_struct *tss, struct thread_struct *thread) argument
504 tss->x86_tss.esp0 = thread->esp0;
506 if (unlikely(tss->x86_tss.ss1 != thread->sysenter_cs)) {
507 tss->x86_tss.ss1 = thread->sysenter_cs;
584 static inline void load_esp0(struct tss_struct *tss, struct thread_struct *thread) argument
586 native_load_esp0(tss, thread);
H A Dparavirt.h137 void (*load_esp0)(struct tss_struct *tss, struct thread_struct *t);
408 static inline void load_esp0(struct tss_struct *tss, argument
411 PVOP_VCALL2(load_esp0, tss, thread);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavformat/
H A Dmpegts.c242 MpegTSSectionFilter *tss = &tss1->u.section_filter; local
246 memcpy(tss->section_buf, buf, buf_size);
247 tss->section_index = buf_size;
248 tss->section_h_size = -1;
249 tss->end_of_section_reached = 0;
251 if (tss->end_of_section_reached)
253 len = 4096 - tss->section_index;
256 memcpy(tss->section_buf + tss->section_index, buf, len);
257 tss
1026 MpegTSFilter *tss; local
1050 MpegTSFilter *tss; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-x86_64/
H A Ddesc.h74 static inline void set_tssldt_descriptor(void *ptr, unsigned long tss, unsigned type, argument
80 d.base0 = PTR_LOW(tss);
81 d.base1 = PTR_MIDDLE(tss) & 0xFF;
85 d.base2 = (PTR_MIDDLE(tss) >> 8) & 0xFF;
86 d.base3 = PTR_HIGH(tss);
H A Dsuspend.h28 u16 tss; member in struct:saved_context
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/cris/arch-v32/kernel/
H A Dentry.S337 add.d $r12, $r10 ; R10 = current tasks tss.
356 add.d $r12, $r11 ; Find the new tasks tss.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/cris/arch-v10/kernel/
H A Dentry.S544 add.d $r12, $r10 ; r10 = current tasks tss
558 add.d $r12, $r11 ; find the new tasks tss
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/
H A Dffplay.c2360 int tns, thh, tmm, tss; local
2364 tss = (tns%60);
2371 hh, mm, ss, thh, tmm, tss);

Completed in 193 milliseconds