From 6c08b065ee573e0f3ceace504e738d7a0ca5f829 Mon Sep 17 00:00:00 2001 From: "Justin M. Forbes" Date: Mon, 16 Nov 2020 10:50:42 -0600 Subject: kernel-5.10.0-0.rc4.77 * Mon Nov 16 2020 Fedora Kernel Team [5.10.0-0.rc4.77] - No need to review, Temporary workarounds due to DEBUG_INFO_BTF not working ("Justin M. Forbes") Resolves: rhbz# Signed-off-by: Justin M. Forbes --- parallel_xz.sh | 5 ----- 1 file changed, 5 deletions(-) (limited to 'parallel_xz.sh') diff --git a/parallel_xz.sh b/parallel_xz.sh index 07013f149..bc08a548d 100755 --- a/parallel_xz.sh +++ b/parallel_xz.sh @@ -16,11 +16,6 @@ while test "$#" != 0; do shift done -#This seems to cause problems with large numbers -if (( $procgroup > 12 )); then - procgroup=12 -fi - # If told to use only one cpu: test "$procgroup" || exec xargs -r xz test "$procgroup" = 1 && exec xargs -r xz -- cgit From 1c3978ac3470147988e7c705fab210d159baf0ad Mon Sep 17 00:00:00 2001 From: "Justin M. Forbes" Date: Mon, 16 Nov 2020 10:52:07 -0600 Subject: Testing different thread limits in parallel_xz.sh Signed-off-by: Justin M. Forbes --- parallel_xz.sh | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'parallel_xz.sh') diff --git a/parallel_xz.sh b/parallel_xz.sh index bc08a548d..65621501c 100755 --- a/parallel_xz.sh +++ b/parallel_xz.sh @@ -16,6 +16,11 @@ while test "$#" != 0; do shift done +#This seems to cause problems with large numbers +if (( $procgroup > 8 )); then + procgroup=8 +fi + # If told to use only one cpu: test "$procgroup" || exec xargs -r xz test "$procgroup" = 1 && exec xargs -r xz -- cgit