From owner-freebsd-i386@freebsd.org Wed Sep 7 06:26:01 2016 Return-Path: Delivered-To: freebsd-i386@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 604D2AC4565; Wed, 7 Sep 2016 06:26:01 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 52C26947; Wed, 7 Sep 2016 06:26:01 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 2A18010E; Wed, 7 Sep 2016 06:26:01 +0000 (UTC) Date: Wed, 7 Sep 2016 06:25:59 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: jhibbits@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org, freebsd-i386@FreeBSD.org Message-ID: <1057571450.50.1473229561188.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1436260114.46.1473220969771.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1436260114.46.1473220969771.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_i386 - Build #3873 - Fixed MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_i386 X-Jenkins-Result: SUCCESS Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.23 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Sep 2016 06:26:01 -0000 FreeBSD_HEAD_i386 - Build #3873 - Fixed: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/3873/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/3873/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/3873/console Change summaries: 305520 by jhibbits: Disable the qoriq errata fix for now It hangs more often than it actually works it seems. Further debugging is needed to determine why, but for now the system needs to be able to boot. 305517 by jhibbits: Allow pmap_early_io_unmap() to reclaim memory pmap_early_io_map()/pmap_early_io_unmap(), if used in pairs, should be used in the form: pmap_early_io_map() ..do stuff.. pmap_early_io_unmap() Without other allocations in the middle. Without reclaiming memory this can leave large holes in the device space. While here, make a simple change to the unmap loop which now permits it to unmap multiple TLB entries in the range.