From owner-freebsd-current@FreeBSD.ORG Wed Apr 29 22:14:05 2015 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 74F997B7; Wed, 29 Apr 2015 22:14:05 +0000 (UTC) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 54E891EE4; Wed, 29 Apr 2015 22:14:05 +0000 (UTC) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 55927F86; Wed, 29 Apr 2015 22:14:05 +0000 (UTC) Date: Wed, 29 Apr 2015 22:14:04 +0000 (GMT) From: jenkins-admin@freebsd.org To: jenkins-admin@FreeBSD.org, freebsd-current@freebsd.org, trasz@FreeBSD.org, smh@FreeBSD.org, gjb@FreeBSD.org, jhb@FreeBSD.org, gnn@FreeBSD.org, scottl@FreeBSD.org, brd@FreeBSD.org, ngie@FreeBSD.org, pfg@FreeBSD.org, andrew@FreeBSD.org, bapt@FreeBSD.org, whu@FreeBSD.org, royger@FreeBSD.org Message-ID: <2075756931.92.1430345645188.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <581604967.89.1430333048809.JavaMail.jenkins@jenkins-9.freebsd.org> References: <581604967.89.1430333048809.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: Build failed in Jenkins: FreeBSD_HEAD #2711 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Instance-Identity: MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkKKb2VAfYQKfu1t7qk4nR5qzUBEI+UqT4BPec4qHVhqUy0FFdq50sMH+3y9bCDNOufctov6VqTNffZ3YXArnZK95YF0OX97fh+E9txYOUX1adc+TikcKjuYpHmL5dE62eaZTI+4A5jnRonskQ1PaoIFz0Kbu4mWzkFsmdiXTraGzomXq4cHUCATA2+K4eDYgjXEQI30z3GOMmmZ4t/+6QGk1cMb/BqMWHbn80AsRCb4tU7Hpd72XLDpsuO7YRP1Q0CjmNAuBOTj+sFiiOe6U9HpqOlQN+iFUvBdZo/ybuy5Kh71cAaYQNL68cYdZJ6binH/DkG3KY/fS7DFYAeuwjwIDAQAB X-Jenkins-Job: FreeBSD_HEAD X-Jenkins-Result: FAILURE X-Mailman-Approved-At: Wed, 29 Apr 2015 22:26:23 +0000 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 Apr 2015 22:14:05 -0000 See Changes: [gnn] Brief demo script showing the various values that can be read via the= new SIFTR statically defined tracepoint (SDT). Reviewed by:=09bz, markj [jhb] Don't free mbufs when stopping an interface in netmap mode. Currently if you ifconfig down a vtnet interface while it is being used via netmap, the kernel panics due to trying to treat the cookie values in the virtio rings as mbufs to be freed. When netmap is enabled, these cookie values are pointers to something else. Note that other netmap-aware drivers don't seem to need this as they store the mbuf pointers in the software rings that mirror the hardware descriptor rings, and since netmap doesn't touch those, the software state always has NULL mbuf pointers causing the loops to free mbufs to not do anything. However, vtnet reuses the same state area for both netmap and non-netmap mode, so it needs to explicitly avoid looking at the rings and treating the cookie values as mbufs if netmap is enabled. Differential Revision:=09https://reviews.freebsd.org/D2348 Reviewed by:=09adrian, bryanv, luigi MFC after:=091 week Sponsored by:=09Norse Corp, Inc. [gnn] Brief demo script showing the various values that can be read via the new SIFTR statically defined tracepoint (SDT). Differential Revision:=09https://reviews.freebsd.org/D2387 Reviewed by:=09bz, markj [scottl] Revert r282227. It is clearly incorrect as it frees an object tha= t is still referenced. I think that there does exist an unlikely edge case for a memory leak, but only if a driver is incorrectly written and specifies no valid range of targets to scan. That can be fixed in a follow-up commit. Obtained from:=09Netflix, Inc. [trasz] Remove spurious period. MFC after:=091 month Sponsored by:=09International OCD Foun^W^W^WThe FreeBSD Foundation [brd] Fix typo [trasz] Make rctl(8) more user-friendly when RACCT/RCTL is disabled for som= e reason. MFC after:=091 month Sponsored by:=09The FreeBSD Foundation [bapt] Fix mis usage of ms(7) macros Submitted by:=09heirloom doctools upstream [gjb] Document r280297, OpenSSL updated to version 1.0.1m. Sponsored by:=09The FreeBSD Foundation [scottl] Improve support for blacklisting bad memory locations. The user c= an supply a text file with a list of physical memory addresses to exclude, and have i= t loaded at boot time via the provided example in loader.conf. The tunable 'vm.blacklist' remains, but using an external file means that there's no practical limit to the size of the list. This change also improves the scanning algorithm for processing the list, scanning the list only once instead of scanning it for every page in the system. Both the sysctl and the file can be unsorted and contain duplicates so long as each entry is numeric (decimal or hex) and is separated by a space, comma, or newline character. The sysctl 'vm.page_blacklist' is now provided to report what memory locations were successfully excluded. Reviewed by:=09imp, emax Obtained from:=09Netflix, Inc. MFC after:=093 days [pfg] Fix memory leak in scsi_scan_bus() CID:=091007770 PR:=09199671 [pfg] Plug memory leaks in kbdmux(4) (take 2) This is a fix to the previous attempt in r281889, which some (most?) keyboards. Discussed with:=09emaste, jkim Found by:=09clang static analyzer CID:=09=091007072 CID:=09=091007073 CID:=09=091007074 ------------------------------------------ [...truncated 185138 lines...] --- usr.sbin.all__D --- --- psobject.o --- --- tests.all__D --- --- 01 --- --- usr.sbin.all__D --- cc -O2 -pipe -DACPI_EXEC_APP -fno-strict-aliasing -I -std=3Dgnu9= 9 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-= unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -= Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -W= no-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-p= arentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-l= ocal-typedef -Qunused-arguments -c -o psobject.o --- tests.all__D --- cat >01.tmp chmod +x 01.tmp mv 01.tmp 01 --- 02 --- cat >02.tmp --- lib.all__D --- --- kinfo_getallproc.po --- --- usr.bin.all__D --- --- stresep.o --- --- lib.all__D --- cc -pg -O2 -pipe -DLIBC_SCCS -DINET6 -I -I -std=3Dgnu99 -fstack-protector -Wsystem-hea= ders -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-protot= ypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite= -strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscript= s -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-p= ointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body= -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c -o kinfo_getallproc.po --- usr.bin.all__D --- cc -O2 -pipe -DNO_PWD_OVERRIDE -I -DBMAKE_PATH_MAX=3D1024 -DUSE_META -DMAKE_NATIVE = -DHAVE_CONFIG_H -DHAVE_CONFIG_H -DBMAKE_PATH_MAX=3D1024 -DUSE_META -DMAKE_= NATIVE -DHAVE_CONFIG_H -D_PATH_DEFSYSPATH=3D\".../share/mk:/usr/share/mk\" = -I. -I -DMA= KE_NATIVE -std=3Dgnu99 -fstack-protector -Wsystem-headers -Werror -Wall -W= no-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-protot= ypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -= Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -W= no-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-co= nversion -Wno-unused-local-typedef -Qunused-arguments -c -o stresep.o --- tests.all__D --- chmod +x 02.tmp mv 02.tmp 02 --- 03 --- cat >03.tmp chmod +x 03.tmp mv 03.tmp 03 --- 04 --- cat >04.tmp --- usr.bin.all__D --- --- make.1.gz --- gzip -cn > make.1.gz --- tests.all__D --- chmod +x 04.tmp mv 04.tmp 04 --- 05 --- cat >05.tmp --- usr.bin.all__D --- --- make --- cc -O2 -pipe -DNO_PWD_OVERRIDE -I -DBMAKE_PATH_MAX=3D1024 -DUSE_META -DMAKE_NATIVE = -DHAVE_CONFIG_H -DHAVE_CONFIG_H -DBMAKE_PATH_MAX=3D1024 -DUSE_META -DMAKE_= NATIVE -DHAVE_CONFIG_H -D_PATH_DEFSYSPATH=3D\".../share/mk:/usr/share/mk\" = -I. -I -DMA= KE_NATIVE -std=3Dgnu99 -fstack-protector -Wsystem-headers -Werror -Wall -W= no-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-protot= ypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -= Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -W= no-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-co= nversion -Wno-unused-local-typedef -Qunused-arguments -static -o make arc= h.o buf.o compat.o cond.o dir.o for.o hash.o job.o main.o make.o make_mallo= c.o meta.o parse.o str.o strlist.o suff.o targ.o trace.o util.o var.o lstAp= pend.o lstAtEnd.o lstAtFront.o lstClose.o lstConcat.o lstDatum.o lstDeQueue= .o lstDestroy.o lstDupl.o lstEnQueue.o lstFind.o lstFindFrom.o lstFirst.o l= stForEach.o lstForEachFrom.o lstInit.o lstInsert.o lstIsAtEnd.o lstIsEmpty.= o lstLast.o lstMember.o lstNext.o lstOpen.o lstPrev.o lstRemove.o lstReplac= e.o lstSucc.o stresep.o=20 --- tests.all__D --- chmod +x 05.tmp mv 05.tmp 05 --- 06 --- cat >06.tmp chmod +x 06.tmp mv 06.tmp 06 --- 07 --- cat >07.tmp chmod +x 07.tmp mv 07.tmp 07 --- 08 --- cat >08.tmp chmod +x 08.tmp mv 08.tmp 08 --- 09 --- cat >09.tmp chmod +x 09.tmp --- usr.sbin.all__D --- --- psopcode.o --- --- tests.all__D --- mv 09.tmp 09 --- usr.sbin.all__D --- cc -O2 -pipe -DACPI_EXEC_APP -fno-strict-aliasing -I -std=3Dgnu9= 9 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-= unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -= Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -W= no-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-p= arentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-l= ocal-typedef -Qunused-arguments -c -o psopcode.o --- lib.all__D --- --- kinfo_getproc.po --- --- tests.all__D --- --- 10 --- cat >10.tmp --- lib.all__D --- cc -pg -O2 -pipe -DLIBC_SCCS -DINET6 -I -I -std=3Dgnu99 -fstack-protector -Wsystem-hea= ders -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-protot= ypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite= -strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscript= s -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-p= ointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body= -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c -= o kinfo_getproc.po --- tests.all__D --- chmod +x 10.tmp mv 10.tmp 10 --- 11 --- cat >11.tmp --- usr.bin.all__D --- --- all_subdir_bsdiff --- --- tests.all__D --- chmod +x 11.tmp --- usr.bin.all__D --- =3D=3D=3D> usr.bin/bsdiff (all) --- tests.all__D --- mv 11.tmp 11 --- 12 --- cat >12.tmp chmod +x 12.tmp mv 12.tmp 12 --- usr.bin.all__D --- --- _sub.all --- --- tests.all__D --- --- 13 --- cat >13.tmp --- usr.bin.all__D --- =3D=3D=3D> usr.bin/bsdiff/bsdiff (all) --- tests.all__D --- chmod +x 13.tmp mv 13.tmp 13 --- Kyuafile.auto --- --- usr.sbin.all__D --- --- psopinfo.o --- cc -O2 -pipe -DACPI_EXEC_APP -fno-strict-aliasing -I -std=3Dgnu9= 9 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-= unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -= Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -W= no-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-p= arentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-l= ocal-typedef -Qunused-arguments -c -o psopinfo.o --- tests.all__D --- --- misc.sh --- sed -e '\,maindir=3D,s,maindir=3D.*,maindir=3D`dirname $0`/../,' < >= misc.sh.tmp --- lib.all__D --- --- kinfo_getvmmap.po --- cc -pg -O2 -pipe -DLIBC_SCCS -DINET6 -I -I -std=3Dgnu99 -fstack-protector -Wsystem-hea= ders -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-protot= ypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite= -strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscript= s -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-p= ointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body= -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c = -o kinfo_getvmmap.po --- tests.all__D --- mv misc.sh.tmp misc.sh --- Kyuafile.auto --- --- usr.bin.all__D --- --- bsdiff.o --- cc -O2 -pipe -std=3Dgnu99 -fstack-protector -Wsystem-headers -Werror -Wa= ll -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-p= rototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitc= h -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnes= ted-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmi= ssing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plu= s-int -Wno-unused-const-variable -Qunused-arguments -c -o bsdiff.o --- tests.all__D --- =3D=3D=3D> tests/sys/aio (all) --- usr.sbin.all__D --- --- psparse.o --- --- lib.all__D --- --- kld.po --- cc -pg -O2 -pipe -DLIBC_SCCS -DINET6 -I -I -std=3Dgnu99 -fstack-protector -Wsystem-hea= ders -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-protot= ypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite= -strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscript= s -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-p= ointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body= -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c -o kld.po --- usr.sbin.all__D --- cc -O2 -pipe -DACPI_EXEC_APP -fno-strict-aliasing -I -std=3Dgnu9= 9 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-= unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -= Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -W= no-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-p= arentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-l= ocal-typedef -Qunused-arguments -c -o psparse.o --- tests.all__D --- (cd && make= -f _RECURSING_PROGS=3D SUBDIR=3D PROG=3Daio_test DEPENDFILE=3D.depend.aio_= test .MAKE.DEPENDFILE=3D.depend.aio_test ) --- usr.bin.all__D --- --- bsdiff.1.gz --- gzip -cn > bsdiff.1.gz --- bsdiff --- cc -O2 -pipe -std=3Dgnu99 -fstack-protector -Wsystem-headers -Werror -Wa= ll -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-p= rototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitc= h -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnes= ted-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmi= ssing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plu= s-int -Wno-unused-const-variable -Qunused-arguments -o bsdiff bsdiff.o -l= bz2 --- tests.all__D --- --- aio_test.o --- cc -O2 -pipe -I -= std=3Dgnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2= k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpoint= er-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunus= ed-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wred= undant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-de= clarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused= -const-variable -Qunused-arguments -c -o aio_test.o --- lib.all__D --- --- login_auth.po --- cc -pg -O2 -pipe -DLIBC_SCCS -DINET6 -I -I -std=3Dgnu99 -fstack-protector -Wsystem-hea= ders -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-protot= ypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite= -strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscript= s -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-p= ointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body= -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c -o l= ogin_auth.po --- usr.sbin.all__D --- --- psscope.o --- cc -O2 -pipe -DACPI_EXEC_APP -fno-strict-aliasing -I -std=3Dgnu9= 9 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-= unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -= Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -W= no-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-p= arentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-l= ocal-typedef -Qunused-arguments -c -o psscope.o --- usr.bin.all__D --- =3D=3D=3D> usr.bin/bsdiff/bspatch (all) --- tests.all__D --- := 207:2: error: implicit declaration of function 'atf_skip' is invalid in C99= [-Werror,-Wimplicit-function-declaration] ATF_REQUIRE_KERNEL_MODULE("aio"); ^ :43:3: note: expanded from macro 'ATF_REQUIRE_KERNEL_MODULE' atf_skip("module %s could not be resolved: %s", \ ^ 1 error generated. *** [aio_test.o] Error code 1 make[6]: stopped in 1 error make[6]: stopped in --- lib.all__D --- --- login_cap.po --- --- tests.all__D --- *** [aio_test] Error code 2 make[5]: stopped in 1 error make[5]: stopped in *** [_sub.all] Error code 2 make[4]: stopped in 1 error make[4]: stopped in *** [_sub.all] Error code 2 make[3]: stopped in 1 error make[3]: stopped in --- lib.all__D --- cc -pg -O2 -pipe -DLIBC_SCCS -DINET6 -I -I -std=3Dgnu99 -fstack-protector -Wsystem-hea= ders -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-protot= ypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite= -strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscript= s -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-p= ointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body= -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c -o lo= gin_cap.po --- tests.all__D --- *** [tests.all__D] Error code 2 make[2]: stopped in --- usr.bin.all__D --- A failure has been detected in another branch of the parallel make make[5]: stopped in *** [_sub.all] Error code 2 make[4]: stopped in 1 error make[4]: stopped in *** [all_subdir_bsdiff] Error code 2 make[3]: stopped in 1 error make[3]: stopped in *** [usr.bin.all__D] Error code 2 make[2]: stopped in --- usr.sbin.all__D --- A failure has been detected in another branch of the parallel make make[5]: stopped in *** [_sub.all] Error code 2 make[4]: stopped in 1 error make[4]: stopped in *** [all_subdir_acpi] Error code 2 make[3]: stopped in 1 error make[3]: stopped in *** [usr.sbin.all__D] Error code 2 make[2]: stopped in --- lib.all__D --- A failure has been detected in another branch of the parallel make make[4]: stopped in *** [all_subdir_libutil] Error code 2 make[3]: stopped in 1 error make[3]: stopped in *** [lib.all__D] Error code 2 make[2]: stopped in 4 errors make[2]: stopped in *** [everything] Error code 2 make[1]: stopped in 1 error make[1]: stopped in *** [buildworld] Error code 2 make: stopped in 1 error make: stopped in Build step 'Execute shell' marked build as failure