diff options
author | Andi Kleen <ak@suse.de> | 2006-12-07 02:14:03 +0100 |
---|---|---|
committer | Andi Kleen <andi@basil.nowhere.org> | 2006-12-07 02:14:03 +0100 |
commit | 63cb683c6ed56a420ba60df6a5b206a44e3f85fe (patch) | |
tree | 8c5c7a5c5f9402424df94fb24f4e61a9a8de8865 /include/asm-i386 | |
parent | 70463daca852db396ce17f179d2404b257ba0f66 (diff) | |
download | blackbird-op-linux-63cb683c6ed56a420ba60df6a5b206a44e3f85fe.tar.gz blackbird-op-linux-63cb683c6ed56a420ba60df6a5b206a44e3f85fe.zip |
[PATCH] i386: PDA: Fix math emulator for new pt_regs
This patch fixes the math emulator, which had not been adjusted
to match the changed struct pt_regs.
AK: extracted from larger patch by Jeremy.
Signed-off-by: Andi Kleen <ak@suse.de>
Diffstat (limited to 'include/asm-i386')
-rw-r--r-- | include/asm-i386/math_emu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/asm-i386/math_emu.h b/include/asm-i386/math_emu.h index 697673b555ce..a4b0aa3320e6 100644 --- a/include/asm-i386/math_emu.h +++ b/include/asm-i386/math_emu.h @@ -21,6 +21,7 @@ struct info { long ___eax; long ___ds; long ___es; + long ___fs; long ___orig_eax; long ___eip; long ___cs; |