forked from NixOS/nixpkgs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
At the moment we experience bad instabilities with linux 5.3: openzfs/zfs#9346 as the zfs-native method of disabling the FPU is buggy. (cherry picked from commit 96097ab)
- Loading branch information
Showing
4 changed files
with
56 additions
and
5 deletions.
There are no files selected for viewing
File renamed without changes.
42 changes: 42 additions & 0 deletions
42
pkgs/os-specific/linux/kernel/export_kernel_fpu_functions_5_3.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
From 1e010beda2896bdf3082fb37a3e49f8ce20e04d8 Mon Sep 17 00:00:00 2001 | ||
From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= <[email protected]> | ||
Date: Thu, 2 May 2019 05:28:08 +0100 | ||
Subject: [PATCH] x86/fpu: Export kernel_fpu_{begin,end}() with | ||
EXPORT_SYMBOL_GPL | ||
MIME-Version: 1.0 | ||
Content-Type: text/plain; charset=UTF-8 | ||
Content-Transfer-Encoding: 8bit | ||
|
||
We need these symbols in zfs as the fpu implementation breaks userspace: | ||
|
||
https://github.com/zfsonlinux/zfs/issues/9346 | ||
Signed-off-by: Jörg Thalheim <[email protected]> | ||
--- | ||
arch/x86/kernel/fpu/core.c | 4 ++-- | ||
1 file changed, 2 insertions(+), 2 deletions(-) | ||
|
||
diff --git a/arch/x86/kernel/fpu/core.c b/arch/x86/kernel/fpu/core.c | ||
index 12c70840980e..352538b3bb5d 100644 | ||
--- a/arch/x86/kernel/fpu/core.c | ||
+++ b/arch/x86/kernel/fpu/core.c | ||
@@ -102,7 +102,7 @@ void kernel_fpu_begin(void) | ||
} | ||
__cpu_invalidate_fpregs_state(); | ||
} | ||
-EXPORT_SYMBOL_GPL(kernel_fpu_begin); | ||
+EXPORT_SYMBOL(kernel_fpu_begin); | ||
|
||
void kernel_fpu_end(void) | ||
{ | ||
@@ -111,7 +111,7 @@ void kernel_fpu_end(void) | ||
this_cpu_write(in_kernel_fpu, false); | ||
preempt_enable(); | ||
} | ||
-EXPORT_SYMBOL_GPL(kernel_fpu_end); | ||
+EXPORT_SYMBOL(kernel_fpu_end); | ||
|
||
/* | ||
* Save the FPU state (mark it for reload if necessary): | ||
-- | ||
2.23.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters