Displaying 6 results from an estimated 6 matches for "fpu_system".
2007 Apr 18
1
[PATCH 2/12] ldt-accessors
...t->mm)) {
+ struct desc_struct *desc = &LDT_DESCRIPTOR(regs->xcs);
+ addr = (kprobe_opcode_t *) (get_desc_base(desc) + regs->eip -
sizeof(kprobe_opcode_t));
} else {
addr = (kprobe_opcode_t *)(regs->eip - sizeof(kprobe_opcode_t));
Index: linux-2.6.13/arch/i386/math-emu/fpu_system.h
===================================================================
--- linux-2.6.13.orig/arch/i386/math-emu/fpu_system.h 2005-08-08 13:50:12.000000000 -0700
+++ linux-2.6.13/arch/i386/math-emu/fpu_system.h 2005-08-08 13:53:28.000000000 -0700
@@ -22,7 +22,6 @@
/* s is always from a cpu registe...
2007 Apr 18
1
[PATCH 2/12] ldt-accessors
...t->mm)) {
+ struct desc_struct *desc = &LDT_DESCRIPTOR(regs->xcs);
+ addr = (kprobe_opcode_t *) (get_desc_base(desc) + regs->eip -
sizeof(kprobe_opcode_t));
} else {
addr = (kprobe_opcode_t *)(regs->eip - sizeof(kprobe_opcode_t));
Index: linux-2.6.13/arch/i386/math-emu/fpu_system.h
===================================================================
--- linux-2.6.13.orig/arch/i386/math-emu/fpu_system.h 2005-08-08 13:50:12.000000000 -0700
+++ linux-2.6.13/arch/i386/math-emu/fpu_system.h 2005-08-08 13:53:28.000000000 -0700
@@ -22,7 +22,6 @@
/* s is always from a cpu registe...
2007 Apr 18
0
[PATCH 7/12] gdt-accessor
...} else {
/* Must disable preemption while reading the GDT. */
- desc = &per_cpu(cpu_gdt_table, get_cpu())[desc_number(seg)];
+ desc = &get_cpu_gdt_table(get_cpu())[desc_number(seg)];
}
/* Decode the code segment base from the descriptor */
Index: linux-2.6.13/arch/i386/math-emu/fpu_system.h
===================================================================
2007 Apr 18
0
[PATCH 7/12] gdt-accessor
...} else {
/* Must disable preemption while reading the GDT. */
- desc = &per_cpu(cpu_gdt_table, get_cpu())[desc_number(seg)];
+ desc = &get_cpu_gdt_table(get_cpu())[desc_number(seg)];
}
/* Decode the code segment base from the descriptor */
Index: linux-2.6.13/arch/i386/math-emu/fpu_system.h
===================================================================
2007 Apr 18
2
[PATCH 8/14] i386 / Add a per cpu gdt accessor
...@@ -109,7 +109,7 @@
desc = (void *)desc + (seg & ~7);
} else {
/* Must disable preemption while reading the GDT. */
- desc = per_cpu(cpu_gdt_table, get_cpu());
+ desc = get_cpu_gdt_table(get_cpu());
desc = (void *)desc + (seg & ~7);
}
Index: linux-2.6.13/arch/i386/math-emu/fpu_system.h
===================================================================
2007 Apr 18
2
[PATCH 8/14] i386 / Add a per cpu gdt accessor
...@@ -109,7 +109,7 @@
desc = (void *)desc + (seg & ~7);
} else {
/* Must disable preemption while reading the GDT. */
- desc = per_cpu(cpu_gdt_table, get_cpu());
+ desc = get_cpu_gdt_table(get_cpu());
desc = (void *)desc + (seg & ~7);
}
Index: linux-2.6.13/arch/i386/math-emu/fpu_system.h
===================================================================