diff options
author | Mike Pagano <mpagano@gentoo.org> | 2021-11-18 19:17:09 -0500 |
---|---|---|
committer | Mike Pagano <mpagano@gentoo.org> | 2021-11-18 19:17:09 -0500 |
commit | 17ecdd1bda59626c4d9ae901a5e75370cb8b3674 (patch) | |
tree | 824aaeed53d79d973dc95d608957beb410bf1e9a | |
parent | Linux patch 5.14.20 (diff) | |
download | linux-patches-17ecdd1bda59626c4d9ae901a5e75370cb8b3674.tar.gz linux-patches-17ecdd1bda59626c4d9ae901a5e75370cb8b3674.tar.bz2 linux-patches-17ecdd1bda59626c4d9ae901a5e75370cb8b3674.zip |
Fix for BMQ(BitMap Queue) Scheduler
Bug: https://bugs.gentoo.org/824586
Signed-off-by: Mike Pagano <mpagano@gentoo.org>
-rw-r--r-- | 5020_BMQ-and-PDS-io-scheduler-v5.14-r3.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/5020_BMQ-and-PDS-io-scheduler-v5.14-r3.patch b/5020_BMQ-and-PDS-io-scheduler-v5.14-r3.patch index 99adff7c..cf68d7ea 100644 --- a/5020_BMQ-and-PDS-io-scheduler-v5.14-r3.patch +++ b/5020_BMQ-and-PDS-io-scheduler-v5.14-r3.patch @@ -9510,3 +9510,14 @@ index adf7ef194005..11c8f36e281b 100644 }; struct wakeup_test_data *x = data; +--- a/kernel/sched/alt_core.c 2021-11-18 18:58:14.290182408 -0500 ++++ b/kernel/sched/alt_core.c 2021-11-18 18:58:54.870593883 -0500 +@@ -2762,7 +2762,7 @@ int sched_fork(unsigned long clone_flags + return 0; + } + +-void sched_post_fork(struct task_struct *p) {} ++void sched_post_fork(struct task_struct *p, struct kernel_clone_args *kargs) {} + + #ifdef CONFIG_SCHEDSTATS + |