18a272653SPeter Holm#!/bin/sh 28a272653SPeter Holm 38a272653SPeter Holm# 48a272653SPeter Holm# Copyright (c) 2015 EMC Corp. 58a272653SPeter Holm# All rights reserved. 68a272653SPeter Holm# 78a272653SPeter Holm# Redistribution and use in source and binary forms, with or without 88a272653SPeter Holm# modification, are permitted provided that the following conditions 98a272653SPeter Holm# are met: 108a272653SPeter Holm# 1. Redistributions of source code must retain the above copyright 118a272653SPeter Holm# notice, this list of conditions and the following disclaimer. 128a272653SPeter Holm# 2. Redistributions in binary form must reproduce the above copyright 138a272653SPeter Holm# notice, this list of conditions and the following disclaimer in the 148a272653SPeter Holm# documentation and/or other materials provided with the distribution. 158a272653SPeter Holm# 168a272653SPeter Holm# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 178a272653SPeter Holm# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 188a272653SPeter Holm# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 198a272653SPeter Holm# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 208a272653SPeter Holm# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 218a272653SPeter Holm# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 228a272653SPeter Holm# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 238a272653SPeter Holm# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 248a272653SPeter Holm# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 258a272653SPeter Holm# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 268a272653SPeter Holm# SUCH DAMAGE. 278a272653SPeter Holm# 288a272653SPeter Holm 298a272653SPeter Holm# "panic: Invalid page 0xfffff8007f227cf0 on inact queue" seen. 308a272653SPeter Holm# https://people.freebsd.org/~pho/stress/log/buildworld.txt 318a272653SPeter Holm# Fixed by r289377 328a272653SPeter Holm 338a272653SPeter Holm. ../default.cfg 348a272653SPeter Holm 358a272653SPeter Holm[ `id -u ` -ne 0 ] && echo "Must be root!" && exit 1 368a272653SPeter Holm 378a272653SPeter Holm[ -d /usr/src/sys ] || exit 0 388a272653SPeter Holm[ `sysctl -n hw.physmem` -gt $(( 2 * 1024 * 1024 * 1024)) ] && 398a272653SPeter Holm { echo "RAM must be clamped to 2GB or less for this test."; exit 0; } 408a272653SPeter Holmrm -f $diskimage 418a272653SPeter Holm[ `df -k $(dirname $diskimage) | tail -1 | awk '{print $4}'` -lt \ 428a272653SPeter Holm $((3 * 1024 * 1024)) ] && { echo "Need 3GB on `dirname $diskimage`"; \ 438a272653SPeter Holm exit 0; } 448a272653SPeter Holmmount | grep -q "on $mntpoint " && umount $mntpoint 458a272653SPeter Holmdd if=/dev/zero of=$diskimage bs=1m count=3k status=none 468a272653SPeter Holmtrap "rm -f $diskimage" EXIT INT 478a272653SPeter Holmmdconfig -a -t vnode -f $diskimage -u $mdstart 48608c97bfSPeter Holmnewfs $newfs_flags md$mdstart > /dev/null 49608c97bfSPeter Holmmount -o async /dev/md$mdstart $mntpoint 508a272653SPeter Holm 518a272653SPeter Holmcd /usr/src 528a272653SPeter Holmexport MAKEOBJDIRPREFIX=$mntpoint/obj 538a272653SPeter Holmexport TMPDIR=$mntpoint/tmp 548a272653SPeter Holmmkdir $TMPDIR 558a272653SPeter Holmchmod 0777 $TMPDIR 568a272653SPeter Holm 578a272653SPeter Holmp=$((`sysctl -n hw.ncpu`+ 1)) 58*c7bc30c2SPeter Holm[ $p -gt 32 ] && p=32 # Arbitrary cap 598a272653SPeter Holmtimeout 20m make -i -j $p buildworld DESTDIR=$mntpoint TARGET=amd64 \ 608a272653SPeter Holm TARGET_ARCH=amd64 > /dev/null 618a272653SPeter Holm 628a272653SPeter Holmwhile mount | grep -q "on $mntpoint "; do 638a272653SPeter Holm umount $mntpoint || sleep 1 648a272653SPeter Holmdone 658a272653SPeter Holmcheckfs /dev/md$mdstart || s=$? 668a272653SPeter Holmmdconfig -d -u $mdstart 678a272653SPeter Holmexit $s 68