diff options
author | Tim Yamin <plasmaroo@gentoo.org> | 2004-06-14 19:51:46 +0000 |
---|---|---|
committer | Tim Yamin <plasmaroo@gentoo.org> | 2004-06-14 19:51:46 +0000 |
commit | ad5f7c4a517efdaff16d07bd40971379f0b96428 (patch) | |
tree | 2ae6aca927cb4b8f0bd597833032ade630b3c852 /sys-kernel/gs-sources/files | |
parent | Version bump. (diff) | |
download | historical-ad5f7c4a517efdaff16d07bd40971379f0b96428.tar.gz historical-ad5f7c4a517efdaff16d07bd40971379f0b96428.tar.bz2 historical-ad5f7c4a517efdaff16d07bd40971379f0b96428.zip |
Added a patch for the FPU-lockup issue; please see bug #58304 for details.
Diffstat (limited to 'sys-kernel/gs-sources/files')
-rw-r--r-- | sys-kernel/gs-sources/files/digest-gs-sources-2.4.25_pre7-r6 (renamed from sys-kernel/gs-sources/files/digest-gs-sources-2.4.25_pre7-r5) | 0 | ||||
-rw-r--r-- | sys-kernel/gs-sources/files/gs-sources.FPULockup-53804.patch | 11 |
2 files changed, 11 insertions, 0 deletions
diff --git a/sys-kernel/gs-sources/files/digest-gs-sources-2.4.25_pre7-r5 b/sys-kernel/gs-sources/files/digest-gs-sources-2.4.25_pre7-r6 index f55b28665921..f55b28665921 100644 --- a/sys-kernel/gs-sources/files/digest-gs-sources-2.4.25_pre7-r5 +++ b/sys-kernel/gs-sources/files/digest-gs-sources-2.4.25_pre7-r6 diff --git a/sys-kernel/gs-sources/files/gs-sources.FPULockup-53804.patch b/sys-kernel/gs-sources/files/gs-sources.FPULockup-53804.patch new file mode 100644 index 000000000000..1dd5ed87b520 --- /dev/null +++ b/sys-kernel/gs-sources/files/gs-sources.FPULockup-53804.patch @@ -0,0 +1,11 @@ +--- linux-2.4/include/asm-i386/i387.h 2004-06-13 20:06:05.044881328 +0100 ++++ linux-2.4/include/asm-i386/i387.h 2004-06-13 20:25:42.836829736 +0100 +@@ -34,7 +34,7 @@ + + #define clear_fpu( tsk ) do { \ + if ( tsk->flags & PF_USEDFPU ) { \ +- asm volatile("fwait"); \ ++ asm volatile("fnclex ; fwait"); \ + tsk->flags &= ~PF_USEDFPU; \ + stts(); \ + } \ |