From 58775f2a6930b466f68daae5079bddfac673ed10 Mon Sep 17 00:00:00 2001 From: Scott Little Date: Fri, 24 Aug 2018 12:25:05 -0400 Subject: [PATCH] Kernel can no longer build in 10GB tmpfs Problem: The kernel is sporadically reporting build failures due to 'no space on device' when compiled in a 10 GB tmpfs. Solution: Two parts: 1) Increase required size to 11 GB in the build_srpm.data. 2) Modify build system to allow alocation of a 11 GB tmpfs. Change-Id: I4e1ee60a3522c3f13cf39b3115aa6881185735ed Story: 2002835 Task: 24519 Signed-off-by: Scott Little --- build-tools/build-rpms-parallel | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-tools/build-rpms-parallel b/build-tools/build-rpms-parallel index ef894971..7dac5a51 100755 --- a/build-tools/build-rpms-parallel +++ b/build-tools/build-rpms-parallel @@ -19,8 +19,8 @@ export DISTRO="centos" ABSOLUTE_MAX_WORKERS=4 # Maximum space in gb for each tmpfs based parallel build environment. -# Note: currently 10 gb is sufficient to build everything except ceph -MAX_MEM_PER_WORKER=10 +# Note: currently 11 gb is sufficient to build everything except ceph +MAX_MEM_PER_WORKER=11 # Minimum space in gb for each tmpfs based parallel build environment # Note: tmpfs is typically 2.5 gb when compiling many small jobs