From owner-freebsd-ppc@freebsd.org Mon Feb 4 16:02:22 2019 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A769B14D3F9E for ; Mon, 4 Feb 2019 16:02:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id F13518CA49 for ; Mon, 4 Feb 2019 16:02:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id B03F914D3F9D; Mon, 4 Feb 2019 16:02:21 +0000 (UTC) Delivered-To: ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9E0FC14D3F9C for ; Mon, 4 Feb 2019 16:02:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5D8DE8CA1A for ; Mon, 4 Feb 2019 16:02:20 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 892273BF4 for ; Mon, 4 Feb 2019 16:02:17 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id x14G2HmZ046935 for ; Mon, 4 Feb 2019 16:02:17 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from bugzilla@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id x14G2HLt046917 for ppc@FreeBSD.org; Mon, 4 Feb 2019 16:02:17 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: bugzilla set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: ppc@FreeBSD.org Subject: [Bug 224872] powerpc64: ddb breakpoints throwing a fast kernel trap Date: Mon, 04 Feb 2019 16:02:17 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ppc@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Feb 2019 16:02:23 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D224872 --- Comment #5 from commit-hook@freebsd.org --- A commit references this bug: Author: luporl Date: Mon Feb 4 16:02:04 UTC 2019 New revision: 343744 URL: https://svnweb.freebsd.org/changeset/base/343744 Log: powerpc64: Add a trap stack area Currently, the trap code switches to the the temporary stack in the dbtrap section. It works in most cases, but in the beginning of the execution, t= he temp stack is being used, as starting in the powerpc_init() code. In this current scenario, the stack is being overwritten, which causes the return of breakpoint() to take abnormal execution. This current patchset create a small stack to use by the dbtrap: codepath avoiding the corruption of the temporary stack. PR: 224872 Submitted by: breno.leitao_gmail.com Reviewed by: jhibbits Differential Revision: https://reviews.freebsd.org/D14484 Changes: head/sys/powerpc/aim/locore32.S head/sys/powerpc/aim/locore64.S head/sys/powerpc/aim/trap_subr32.S head/sys/powerpc/aim/trap_subr64.S --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-ppc@freebsd.org Mon Feb 4 18:20:57 2019 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 043F914AD817 for ; Mon, 4 Feb 2019 18:20:57 +0000 (UTC) (envelope-from terry@thehjs.co.uk) Received: from b200.4uh.net (b200.4uh.net [89.248.61.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A9CCD6BBE8 for ; Mon, 4 Feb 2019 18:20:55 +0000 (UTC) (envelope-from terry@thehjs.co.uk) Received: from host86-147-141-161.range86-147.btcentralplus.com ([86.147.141.161]:42832 helo=[192.168.1.227]) by b200.4uh.net with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim 4.91) (envelope-from ) id 1gqirU-00Dgms-0o for freebsd-ppc@freebsd.org; Mon, 04 Feb 2019 18:20:52 +0000 To: freebsd-ppc@freebsd.org From: terry Subject: Xorg taking too long to build on imac G5 Message-ID: <393c97c4-d2ab-c174-7212-173e70dd5414@thehjs.co.uk> Date: Mon, 4 Feb 2019 18:20:53 +0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.4.0 MIME-Version: 1.0 Content-Language: en-US-large X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - b200.4uh.net X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - thehjs.co.uk X-Get-Message-Sender-Via: b200.4uh.net: authenticated_id: terry@thehjs.co.uk X-Authenticated-Sender: b200.4uh.net: terry@thehjs.co.uk X-Source: X-Source-Args: X-Source-Dir: X-Rspamd-Queue-Id: A9CCD6BBE8 X-Spamd-Bar: ++ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [2.93 / 15.00]; RCVD_VIA_SMTP_AUTH(0.00)[]; HAS_X_SOURCE(0.00)[]; TO_DN_NONE(0.00)[]; MX_GOOD(-0.01)[cached: mx2.4uh.com]; HAS_X_ANTIABUSE(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; IP_SCORE(-0.02)[country: GB(-0.09)]; R_DKIM_NA(0.00)[]; RECEIVED_SPAMHAUS_PBL(0.00)[161.141.147.86.zen.spamhaus.org : 127.0.0.10]; MIME_TRACE(0.00)[0:+,1:+]; MID_RHS_MATCH_FROM(0.00)[]; HAS_X_AS(0.00)[terry@thehjs.co.uk]; ARC_NA(0.00)[]; ASN(0.00)[asn:31727, ipnet:89.248.48.0/20, country:GB]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; NEURAL_SPAM_SHORT(0.30)[0.295,0]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; DMARC_NA(0.00)[thehjs.co.uk]; AUTH_NA(1.00)[]; NEURAL_SPAM_MEDIUM(0.96)[0.964,0]; RCPT_COUNT_ONE(0.00)[1]; NEURAL_SPAM_LONG(0.79)[0.794,0]; RCVD_IN_DNSWL_NONE(0.00)[200.61.248.89.list.dnswl.org : 127.0.10.0]; HAS_X_GMSV(0.00)[terry@thehjs.co.uk]; R_SPF_NA(0.00)[]; RCVD_COUNT_TWO(0.00)[2]; RCVD_TLS_ALL(0.00)[] Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Feb 2019 18:20:57 -0000 I have installed FreeBSD onto an imac G5 20” (using FreeBSD-12.0-RELEASE-powerpc-powerpc64-disc1.iso) and have started building xorg from source. I used “make install” with ‘BATCH=yes’ to install the standard options and avoid halts in the build process. However, the build process has been running now for 106 hours and is still running! My questions are: 1) Has the build process somehow got into a loop (is it possible to test for this?) and should I terminate the build? 2) If yes, what precautions can I take to avoid a repetition? I have spent some time looked through the forum and mailing lists but have been unable to find answers so any suggestions or pointers to existing solutions would be welcomed. From owner-freebsd-ppc@freebsd.org Mon Feb 4 19:02:39 2019 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 34A2714AEC22 for ; Mon, 4 Feb 2019 19:02:39 +0000 (UTC) (envelope-from chmeeedalf@gmail.com) Received: from mail-it1-x136.google.com (mail-it1-x136.google.com [IPv6:2607:f8b0:4864:20::136]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3C19D6D7D9 for ; Mon, 4 Feb 2019 19:02:38 +0000 (UTC) (envelope-from chmeeedalf@gmail.com) Received: by mail-it1-x136.google.com with SMTP id x124so12308356itd.1 for ; Mon, 04 Feb 2019 11:02:38 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=k/W4MUCN4S0M5h5g0o3N/uRwC/6XGTswK4cgiv1i5Og=; b=tYPFCWJfS9+1DXltdQpe+6ZiCYcx9LfmIiGO2+4U8Ju7LiOoTozYfRr9pxe2RdVmft PHQUSwZauLRi1MS98Pyn0M2FsrryzNP8TjLuW3H7dFJ7rIvpU7Lq/p0fDqr6sOcMv+wz ZXzn/0/w59W0TgU8IA/oJIfwX/1/cvv/kLq4u9Q37FLD9s2CitD3CrVbtmpTguiRhr8g fDN/+2hTxGShB6qCEIAyyPbXdKFL0Q+4kTvpweouxtXNWuJRZqEVwLzYtKr4CKUTfuss 5Zv0ZiF4DxfnqqY2+YywQbBfwImAbegenJRRABOhavgC1mmMKpFzzYojzwuP1ibmKnpD wi5A== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=k/W4MUCN4S0M5h5g0o3N/uRwC/6XGTswK4cgiv1i5Og=; b=fedHw516iyHyHtZihm/4ZZMjyIDFmC1kpnH5j0aaQhlZ6GWeWfrXv2VHXdLHRoMr/C UMacM24oAr0F2Z62Qj4xLC/JlvluhODzsf1upgUGCTBq4nMDjxB4fta5lCLT9kvr6fWF tJxQJN6VlGtS072+asR9a3ZUMFTQ3xwbxo5KNoXZDN9rKzXN6hZDem/vHFjkbCdjHGie 10DYUfTT/HKvAAc9Z/CvzUTr3nIFmykBRslsKzws1ao/SoDQ5DftXBf1Iag4z+FxwLaM oyiF8QXUstNHawx+WNOpDxsVqz3Ug15VbN1Lms17Rt4uGFcMjiW5sY5RvW3hhGHKpxcD 6B4w== X-Gm-Message-State: AHQUAuaEsi+watmFKHpQp+9y9MF8RhBij8aeuZtkZaHzdLJgULhqqls5 F8yOJBBLF4klyBI3R6tUQocOZUQo0oY= X-Google-Smtp-Source: AHgI3Ia3mJKJ19t3o1Q8w1PieW2xjZRaRqwDcdZg9ZpOMOkvegbQR1Y8eQNFq7vkSMkR/G4GZ1Ak5w== X-Received: by 2002:a24:3282:: with SMTP id j124mr482050ita.173.1549306957334; Mon, 04 Feb 2019 11:02:37 -0800 (PST) Received: from ralga.knownspace (173-25-245-129.client.mchsi.com. [173.25.245.129]) by smtp.gmail.com with ESMTPSA id m196sm576272itc.33.2019.02.04.11.02.36 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Mon, 04 Feb 2019 11:02:37 -0800 (PST) Date: Mon, 4 Feb 2019 13:02:29 -0600 From: Justin Hibbits To: Al Cc: freebsd-ppc@freebsd.org Subject: Re: Netboot X5000 Message-ID: <20190204130229.4228eb4c@ralga.knownspace> In-Reply-To: References: X-Mailer: Claws Mail 3.17.3 (GTK+ 2.24.32; powerpc64-portbld-freebsd13.0) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Rspamd-Queue-Id: 3C19D6D7D9 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org; dkim=pass header.d=gmail.com header.s=20161025 header.b=tYPFCWJf; dmarc=pass (policy=none) header.from=gmail.com; spf=pass (mx1.freebsd.org: domain of chmeeedalf@gmail.com designates 2607:f8b0:4864:20::136 as permitted sender) smtp.mailfrom=chmeeedalf@gmail.com X-Spamd-Result: default: False [-6.51 / 15.00]; RCVD_VIA_SMTP_AUTH(0.00)[]; TO_DN_SOME(0.00)[]; R_SPF_ALLOW(-0.20)[+ip6:2607:f8b0:4000::/36]; FREEMAIL_FROM(0.00)[gmail.com]; RCVD_COUNT_THREE(0.00)[3]; DKIM_TRACE(0.00)[gmail.com:+]; RCPT_COUNT_TWO(0.00)[2]; DMARC_POLICY_ALLOW(-0.50)[gmail.com,none]; MX_GOOD(-0.01)[cached: alt3.gmail-smtp-in.l.google.com]; NEURAL_HAM_SHORT(-0.97)[-0.971,0]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; FREEMAIL_ENVFROM(0.00)[gmail.com]; ASN(0.00)[asn:15169, ipnet:2607:f8b0::/32, country:US]; RCVD_TLS_LAST(0.00)[]; DWL_DNSWL_NONE(0.00)[gmail.com.dwl.dnswl.org : 127.0.5.0]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; R_DKIM_ALLOW(-0.20)[gmail.com:s=20161025]; FROM_HAS_DN(0.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; MIME_GOOD(-0.10)[text/plain]; PREVIOUSLY_DELIVERED(0.00)[freebsd-ppc@freebsd.org]; TO_MATCH_ENVRCPT_SOME(0.00)[]; RCVD_IN_DNSWL_NONE(0.00)[6.3.1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2.0.0.4.6.8.4.0.b.8.f.7.0.6.2.list.dnswl.org : 127.0.5.0]; IP_SCORE(-2.53)[ip: (-8.22), ipnet: 2607:f8b0::/32(-2.43), asn: 15169(-1.94), country: US(-0.07)] X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Feb 2019 19:02:39 -0000 On Thu, 31 Jan 2019 02:06:19 +0100 Al wrote: > Hello, > > After months of going in the wrong direction with this, I think I am > finally on the right track. I came across: > https://wiki.freebsd.org/powerpc/UBoot-Install I have successfully > followed all the steps until where it says: "Once booted to netboot". > It does not document how to set up a netboot for a uboot machine. And > I have searched for hours looking for information on how to netboot > an X5000 without success. Does anyone know where I could find some > documentation on netbooting the X5000? > > Kind Regards, > Al Hi Al, I can't say I've setup a 'proper' netboot system, but when I was doing my bringup for the X5000 (and writing that wiki page) my netboot consisted of a isc-dhcp server and a tftp server with the kernel and dtb files. The kernel at the time was a uImage, as demonstrated on the wiki page. However, now it's possible (and I strongly encourage) to use ubldr to boot the kernel. I will update the wiki page as soon as I get the last piece of the puzzle committed for placing ubldr in the right place at install time. An alternative would be to create a release image (make buildworld buildkernel KERNCONF=QORIQ64 TARGET_ARCH=powerpc64; make -C release/ cdrom TARGET_ARCH=powerpc64), put that image onto a USB stick and "netbooting" ubldr (put ubldr on a tftp server, and boot that), and setting the loader to boot from the USB stick. You might be able to just boot straight to ubldr on the USB stick, too. - Justin From owner-freebsd-ppc@freebsd.org Mon Feb 4 19:20:39 2019 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CA51914AF1E5 for ; Mon, 4 Feb 2019 19:20:38 +0000 (UTC) (envelope-from chmeeedalf@gmail.com) Received: from mail-it1-x131.google.com (mail-it1-x131.google.com [IPv6:2607:f8b0:4864:20::131]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 802366DF55 for ; Mon, 4 Feb 2019 19:20:37 +0000 (UTC) (envelope-from chmeeedalf@gmail.com) Received: by mail-it1-x131.google.com with SMTP id w18so2565871ite.1 for ; Mon, 04 Feb 2019 11:20:37 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=g72AQde8EjeOJOq9yAL+z55m+jacD0lMWu5tNu5swXo=; b=mTyqQRam2Qiv33GpLCELYRtuD/FrGaUwWmgF5TBiWaaZIXSscsdUBDariu+8DtK6jZ JoF8ViQRnVBfZaB7FzG3LoRWQI6aVf5KvgNJmmlsP6c/pvmA3iutf4KFvqZneO8ZBdI0 e3AOtdgL9+oT/1q4Iw5awWk+vB/ohyGIWQt+9V0wdBtd1CDOSJHafCLEP5fbpLqUprnm ajYt/yNnVwWWoz1fPxh/do5LXgfFoR9XSxkWo/OlkpU8i6X2oWqu/vhGbt9T/Qz2mR5P gYxuPiA2LBArlH7NNVhTDD1NasPmJSJo0WNqt3Z4XQl3vsA3mPT0WEeQSWxq69ZLYefK 9YRw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=g72AQde8EjeOJOq9yAL+z55m+jacD0lMWu5tNu5swXo=; b=WUf6NeoKnlT0QLYs5FiqkZHPlZlqDU5vIR75N1eG2hmIHtvwpWJX1HhDn26hX6RZnn s0pZjzA0TSdZmxCEiOhkC4AjewGaGW6zsg7chGNLwtod0m3BubAI7LPF06ENCeqVqsOp Qz4gmuy90lZdqYsfIY4cgwrUBuuXuH8WggmwqZY3K1yb5icGRfxYua/y7KIM4glsagCU x4t+VRQVVdYqmsEdsBnriXK/yEMvoWmUH5nZlbYwU3ci+OyhN4/DedIRqBaHhFxrYwKi 70Lja51eRV0NsqdsK1U5+ZuZZvVARKQ1ypXl9varKUuZY59+d2W3xW8I477+O1YR68tC YvSg== X-Gm-Message-State: AHQUAubNzsDwGnWQXxDFAwWEyhXcR9/+M/yqRzcUwCcT9kzm+ZWsx1/B TXtOdcCG6+FjNUXqt3egogyMAa5iR3s= X-Google-Smtp-Source: AHgI3IY1X11pQWH7fRorvfGP98P2lL24yC0gensnjv1edja+CyDtdrvTyHcJRBHIbZfX9KYD3mKjgg== X-Received: by 2002:a5e:9e4a:: with SMTP id j10mr673557ioq.165.1549308036720; Mon, 04 Feb 2019 11:20:36 -0800 (PST) Received: from ralga.knownspace (173-25-245-129.client.mchsi.com. [173.25.245.129]) by smtp.gmail.com with ESMTPSA id m45sm403108iti.10.2019.02.04.11.20.36 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Mon, 04 Feb 2019 11:20:36 -0800 (PST) Date: Mon, 4 Feb 2019 13:20:32 -0600 From: Justin Hibbits To: terry Cc: freebsd-ppc@freebsd.org Subject: Re: Xorg taking too long to build on imac G5 Message-ID: <20190204132032.79f7f79d@ralga.knownspace> In-Reply-To: <393c97c4-d2ab-c174-7212-173e70dd5414@thehjs.co.uk> References: <393c97c4-d2ab-c174-7212-173e70dd5414@thehjs.co.uk> X-Mailer: Claws Mail 3.17.3 (GTK+ 2.24.32; powerpc64-portbld-freebsd13.0) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Rspamd-Queue-Id: 802366DF55 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org; dkim=pass header.d=gmail.com header.s=20161025 header.b=mTyqQRam; dmarc=pass (policy=none) header.from=gmail.com; spf=pass (mx1.freebsd.org: domain of chmeeedalf@gmail.com designates 2607:f8b0:4864:20::131 as permitted sender) smtp.mailfrom=chmeeedalf@gmail.com X-Spamd-Result: default: False [-6.41 / 15.00]; RCVD_VIA_SMTP_AUTH(0.00)[]; TO_DN_SOME(0.00)[]; R_SPF_ALLOW(-0.20)[+ip6:2607:f8b0:4000::/36]; FREEMAIL_FROM(0.00)[gmail.com]; RCVD_COUNT_THREE(0.00)[3]; DKIM_TRACE(0.00)[gmail.com:+]; RCPT_COUNT_TWO(0.00)[2]; DMARC_POLICY_ALLOW(-0.50)[gmail.com,none]; MX_GOOD(-0.01)[cached: alt3.gmail-smtp-in.l.google.com]; NEURAL_HAM_SHORT(-0.90)[-0.904,0]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; FREEMAIL_ENVFROM(0.00)[gmail.com]; ASN(0.00)[asn:15169, ipnet:2607:f8b0::/32, country:US]; RCVD_TLS_LAST(0.00)[]; DWL_DNSWL_NONE(0.00)[gmail.com.dwl.dnswl.org : 127.0.5.0]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; R_DKIM_ALLOW(-0.20)[gmail.com:s=20161025]; FROM_HAS_DN(0.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; MIME_GOOD(-0.10)[text/plain]; PREVIOUSLY_DELIVERED(0.00)[freebsd-ppc@freebsd.org]; TO_MATCH_ENVRCPT_SOME(0.00)[]; RCVD_IN_DNSWL_NONE(0.00)[1.3.1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2.0.0.4.6.8.4.0.b.8.f.7.0.6.2.list.dnswl.org : 127.0.5.0]; IP_SCORE(-2.50)[ip: (-8.04), ipnet: 2607:f8b0::/32(-2.43), asn: 15169(-1.94), country: US(-0.07)] X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Feb 2019 19:20:39 -0000 On Mon, 4 Feb 2019 18:20:53 +0000 terry wrote: > I have installed FreeBSD onto an imac G5 20=E2=80=9D (using=20 > FreeBSD-12.0-RELEASE-powerpc-powerpc64-disc1.iso) and have started=20 > building xorg from source. >=20 > I used =E2=80=9Cmake install=E2=80=9D with =E2=80=98BATCH=3Dyes=E2=80=99 = to install the standard > options and avoid halts in the build process. >=20 > However, the build process has been running now for 106 hours and is=20 > still running! My questions are: >=20 > 1) Has the build process somehow got into a loop (is it possible to > test for this?) and should I terminate the build? >=20 > 2) If yes, what precautions can I take to avoid a repetition? >=20 > I have spent some time looked through the forum and mailing lists but=20 > have been unable to find answers so any suggestions or pointers to=20 > existing solutions would be welcomed. >=20 Hi Terry, Yes, on such an old machine it can take a *very* long time to build x11/xorg and all its dependencies, there's a long list of them including lang/gcc5, lang/gcc8 and devel/llvm60, each of which can take over 10 hours. If I remember correctly the iMac G5 was a single-core single-CPU machine, so it can take even longer, significantly longer. On my dual-core 2.3GHz it would take ~13 hours to build llvm, with 2 threads running. So I imagine at least 20 hours with a single thread running. Personally, I strongly recommend installing poudriere, and building with that, as it simplifies monitoring, and allows for a cleaner build environment. It doesn't save you any time at all on your build, though. - Justin From owner-freebsd-ppc@freebsd.org Mon Feb 4 20:29:05 2019 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A8A6614B1252 for ; Mon, 4 Feb 2019 20:29:05 +0000 (UTC) (envelope-from terry@thehjs.co.uk) Received: from b200.4uh.net (b200.4uh.net [89.248.61.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BC16F70DE0 for ; Mon, 4 Feb 2019 20:29:04 +0000 (UTC) (envelope-from terry@thehjs.co.uk) Received: from host86-147-141-161.range86-147.btcentralplus.com ([86.147.141.161]:43094 helo=[192.168.1.227]) by b200.4uh.net with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim 4.91) (envelope-from ) id 1gqkrU-00Dy8c-Gc; Mon, 04 Feb 2019 20:29:00 +0000 Subject: Re: Xorg taking too long to build on imac G5 To: Justin Hibbits Cc: freebsd-ppc@freebsd.org References: <393c97c4-d2ab-c174-7212-173e70dd5414@thehjs.co.uk> <20190204132032.79f7f79d@ralga.knownspace> From: terry Message-ID: <3f88be3f-4e18-6b85-e054-60ad8aa6f988@thehjs.co.uk> Date: Mon, 4 Feb 2019 20:29:01 +0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.4.0 MIME-Version: 1.0 In-Reply-To: <20190204132032.79f7f79d@ralga.knownspace> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Content-Language: en-US-large X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - b200.4uh.net X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - thehjs.co.uk X-Get-Message-Sender-Via: b200.4uh.net: authenticated_id: terry@thehjs.co.uk X-Authenticated-Sender: b200.4uh.net: terry@thehjs.co.uk X-Source: X-Source-Args: X-Source-Dir: X-Rspamd-Queue-Id: BC16F70DE0 X-Spamd-Bar: ++ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [2.73 / 15.00]; RCVD_VIA_SMTP_AUTH(0.00)[]; TO_DN_SOME(0.00)[]; HAS_X_SOURCE(0.00)[]; MX_GOOD(-0.01)[cached: mx2.4uh.com]; RCPT_COUNT_TWO(0.00)[2]; FREEMAIL_TO(0.00)[gmail.com]; HAS_X_ANTIABUSE(0.00)[]; RECEIVED_SPAMHAUS_PBL(0.00)[161.141.147.86.zen.spamhaus.org : 127.0.0.10]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:31727, ipnet:89.248.48.0/20, country:GB]; MID_RHS_MATCH_FROM(0.00)[]; HAS_X_AS(0.00)[terry@thehjs.co.uk]; FROM_EQ_ENVFROM(0.00)[]; ARC_NA(0.00)[]; FROM_HAS_DN(0.00)[]; NEURAL_SPAM_SHORT(0.58)[0.576,0]; MIME_GOOD(-0.10)[text/plain]; DMARC_NA(0.00)[thehjs.co.uk]; AUTH_NA(1.00)[]; NEURAL_SPAM_MEDIUM(0.93)[0.932,0]; TO_MATCH_ENVRCPT_SOME(0.00)[]; NEURAL_SPAM_LONG(0.35)[0.349,0]; RCVD_IN_DNSWL_NONE(0.00)[200.61.248.89.list.dnswl.org : 127.0.10.0]; HAS_X_GMSV(0.00)[terry@thehjs.co.uk]; R_SPF_NA(0.00)[]; RCVD_COUNT_TWO(0.00)[2]; RCVD_TLS_ALL(0.00)[]; IP_SCORE(-0.02)[country: GB(-0.09)] X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Feb 2019 20:29:05 -0000 Hi Justin Many thanks for your reply. That gives me some comfort and I shall continue to wait for the build to finish. And I shall investigate the use of poudriere for the next build! Terry On 04/02/2019 19:20, Justin Hibbits wrote: > On Mon, 4 Feb 2019 18:20:53 +0000 > terry wrote: > >> I have installed FreeBSD onto an imac G5 20” (using >> FreeBSD-12.0-RELEASE-powerpc-powerpc64-disc1.iso) and have started >> building xorg from source. >> >> I used “make install” with ‘BATCH=yes’ to install the standard >> options and avoid halts in the build process. >> >> However, the build process has been running now for 106 hours and is >> still running! My questions are: >> >> 1) Has the build process somehow got into a loop (is it possible to >> test for this?) and should I terminate the build? >> >> 2) If yes, what precautions can I take to avoid a repetition? >> >> I have spent some time looked through the forum and mailing lists but >> have been unable to find answers so any suggestions or pointers to >> existing solutions would be welcomed. >> > Hi Terry, > > Yes, on such an old machine it can take a *very* long time to build > x11/xorg and all its dependencies, there's a long list of them > including lang/gcc5, lang/gcc8 and devel/llvm60, each of which can take > over 10 hours. If I remember correctly the iMac G5 was a single-core > single-CPU machine, so it can take even longer, significantly longer. > On my dual-core 2.3GHz it would take ~13 hours to build llvm, with 2 > threads running. So I imagine at least 20 hours with a single thread > running. > > Personally, I strongly recommend installing poudriere, and building > with that, as it simplifies monitoring, and allows for a cleaner build > environment. It doesn't save you any time at all on your build, though. > > - Justin From owner-freebsd-ppc@freebsd.org Tue Feb 5 10:35:26 2019 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4467614AFD03 for ; Tue, 5 Feb 2019 10:35:26 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id C9EBF6B186 for ; Tue, 5 Feb 2019 10:35:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 8831A14AFD02; Tue, 5 Feb 2019 10:35:25 +0000 (UTC) Delivered-To: ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 76A3F14AFD01 for ; Tue, 5 Feb 2019 10:35:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 14B1D6B180 for ; Tue, 5 Feb 2019 10:35:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 3F251E111 for ; Tue, 5 Feb 2019 10:35:24 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id x15AZO8G023141 for ; Tue, 5 Feb 2019 10:35:24 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id x15AZOGx023140 for ppc@FreeBSD.org; Tue, 5 Feb 2019 10:35:24 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: ppc@FreeBSD.org Subject: [Bug 233377] [PowerPC64] Panic during high disk I/O activity Date: Tue, 05 Feb 2019 10:35:24 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: luporl@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ppc@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Feb 2019 10:35:26 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D233377 --- Comment #11 from Leandro Lupori --- (In reply to Mark Johnston from comment #10) Yes, you are right, r343616 fixes the bug introduced by r343026. However, I cannot reproduce this issue anymore on my machine. So, maybe another revision fixed the issue not fixed by r343616? Or there is something else that needs to happen to reproduce the previous issue? I'll keep an eye on this issue, if it happens again, but for now I'll stop trying to reproduce it, because maybe it is gone anyway. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-ppc@freebsd.org Tue Feb 5 18:52:41 2019 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3D30814C57E7 for ; Tue, 5 Feb 2019 18:52:41 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id C2C118AA2F for ; Tue, 5 Feb 2019 18:52:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 7BEDF14C57E5; Tue, 5 Feb 2019 18:52:40 +0000 (UTC) Delivered-To: ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 67F6114C57E3 for ; Tue, 5 Feb 2019 18:52:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F05CB8AA2B for ; Tue, 5 Feb 2019 18:52:39 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 0744312B47 for ; Tue, 5 Feb 2019 18:52:39 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id x15Iqcl5060077 for ; Tue, 5 Feb 2019 18:52:38 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id x15Iqc9a060074 for ppc@FreeBSD.org; Tue, 5 Feb 2019 18:52:38 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: ppc@FreeBSD.org Subject: [Bug 233377] [PowerPC64] Panic during high disk I/O activity Date: Tue, 05 Feb 2019 18:52:38 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: markj@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ppc@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Feb 2019 18:52:41 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D233377 --- Comment #12 from Mark Johnston --- (In reply to Leandro Lupori from comment #11) Prior to rXXXXXX, zone_alloc_bucket() did: max =3D MIN(bucket->ub_entries, zone->uz_count); bucket->ub_cnt =3D zone->uz_import(zone->uz_arg, bucket->ub_bucket, max, domain, flags); However, the zone lock is not held at this point, so uz_count may change. = In particular, since MIN is a macro that evaluates its arguments twice, I beli= eve it's possible for max to end up being larger than bucket->ub_entries, which would result in a use-after-free. r343026 fixed this problem as part of some refactoring, so that might expla= in why you don't see it anymore. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-ppc@freebsd.org Wed Feb 6 09:19:17 2019 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D0E3714C868E for ; Wed, 6 Feb 2019 09:19:16 +0000 (UTC) (envelope-from 01020168c21aab02-8fb555da-fa09-48a3-a244-46708c3a926a-000000@eu-west-1.amazonses.com) Received: from a4-20.smtp-out.eu-west-1.amazonses.com (a4-20.smtp-out.eu-west-1.amazonses.com [54.240.4.20]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E6C478C2E8 for ; Wed, 6 Feb 2019 09:19:15 +0000 (UTC) (envelope-from 01020168c21aab02-8fb555da-fa09-48a3-a244-46708c3a926a-000000@eu-west-1.amazonses.com) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/simple; s=uku4taia5b5tsbglxyj6zym32efj7xqv; d=amazonses.com; t=1549444754; h=Date:To:From:Reply-To:Subject:Message-ID:List-Unsubscribe:MIME-Version:Content-Type:Feedback-ID; bh=YGp28pSiJLGMBXkaGsz1jqakKT/FqsMmVoWC1yBHqbs=; b=G4umVxxZNvg+X9Es1Ykrrdb69RF9JEyn8XGhd4av1IV779K2dEWGH8SHvF8RMpg7 zBZSlxdiazyo60loUVMXsNOJxjF0N5Q+efnYJYvgrRu5qbi8YRTZ4jK3yqxx6Zd7SkB 3UnLjS1axNNzn1UJaOZWaBE/yoOACx4+Z3EQacTc= Date: Wed, 6 Feb 2019 09:19:14 +0000 To: freebsd-ppc@freebsd.org From: Just Property Reply-To: Just Property Subject: =?UTF-8?Q?It=E2=80=99s_time_to_#SHIFT?= Message-ID: <01020168c21aab02-8fb555da-fa09-48a3-a244-46708c3a926a-000000@eu-west-1.amazonses.com> X-Mailer: Sendy (https://sendy.co) X-SES-Outgoing: 2019.02.06-54.240.4.20 Feedback-ID: 1.eu-west-1.BmfZtOPA4RM0Tkj5q/+YW97EAbZVmaWBXQuMcoOWGeU=:AmazonSES X-Rspamd-Queue-Id: E6C478C2E8 X-Spamd-Bar: + Authentication-Results: mx1.freebsd.org; dkim=pass header.d=amazonses.com header.s=uku4taia5b5tsbglxyj6zym32efj7xqv header.b=G4umVxxZ; spf=pass (mx1.freebsd.org: domain of 01020168c21aab02-8fb555da-fa09-48a3-a244-46708c3a926a-000000@eu-west-1.amazonses.com designates 54.240.4.20 as permitted sender) smtp.mailfrom=01020168c21aab02-8fb555da-fa09-48a3-a244-46708c3a926a-000000@eu-west-1.amazonses.com X-Spamd-Result: default: False [1.35 / 15.00]; HAS_REPLYTO(0.00)[shift@justpropertymarketing.co.za]; R_SPF_ALLOW(-0.20)[+ip4:54.240.0.0/18]; TO_DN_NONE(0.00)[]; DKIM_TRACE(0.00)[amazonses.com:+]; MX_GOOD(-0.01)[cached: feedback-smtp.eu-west-1.amazonses.com]; NEURAL_HAM_SHORT(-0.66)[-0.658,0]; FORGED_SENDER(0.30)[shift@justpropertymarketing.co.za,01020168c21aab02-8fb555da-fa09-48a3-a244-46708c3a926a-000000@eu-west-1.amazonses.com]; RCVD_COUNT_ZERO(0.00)[0]; IP_SCORE(-1.16)[ipnet: 54.240.0.0/21(-4.42), asn: 16509(-1.31), country: US(-0.07)]; ASN(0.00)[asn:16509, ipnet:54.240.0.0/21, country:US]; FROM_NEQ_ENVFROM(0.00)[shift@justpropertymarketing.co.za,01020168c21aab02-8fb555da-fa09-48a3-a244-46708c3a926a-000000@eu-west-1.amazonses.com]; PHISHING(2.87)[just.property->justpropertymarketing.co.za]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-0.94)[-0.945,0]; R_DKIM_ALLOW(-0.20)[amazonses.com:s=uku4taia5b5tsbglxyj6zym32efj7xqv]; REPLYTO_EQ_FROM(0.00)[]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; HTML_SHORT_LINK_IMG_1(2.00)[]; NEURAL_HAM_LONG(-0.83)[-0.834,0]; DMARC_NA(0.00)[justpropertymarketing.co.za]; HAS_LIST_UNSUB(-0.01)[]; RCPT_COUNT_ONE(0.00)[1]; RCVD_IN_DNSWL_NONE(0.00)[20.4.240.54.list.dnswl.org : 127.0.15.0]; MIME_HTML_ONLY(0.20)[]; RCVD_TLS_ALL(0.00)[] MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Feb 2019 09:19:17 -0000 From owner-freebsd-ppc@freebsd.org Thu Feb 7 11:50:05 2019 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 72DF814D6B9D for ; Thu, 7 Feb 2019 11:50:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 04F1A85FA2 for ; Thu, 7 Feb 2019 11:50:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id B81FD14D6B9A; Thu, 7 Feb 2019 11:50:04 +0000 (UTC) Delivered-To: ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A446814D6B99 for ; Thu, 7 Feb 2019 11:50:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E7BDF85FA1 for ; Thu, 7 Feb 2019 11:50:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 1AA2393DD for ; Thu, 7 Feb 2019 11:50:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id x17Bo2b6023085 for ; Thu, 7 Feb 2019 11:50:02 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id x17Bo21R023084 for ppc@FreeBSD.org; Thu, 7 Feb 2019 11:50:02 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: ppc@FreeBSD.org Subject: [Bug 235060] [boot] FreeBSD 12.0 Release DVD and CD will not boot on PowerMac G5 Quad Date: Thu, 07 Feb 2019 11:50:02 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 12.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ppc@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Feb 2019 11:50:05 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D235060 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|bugs@FreeBSD.org |ppc@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-ppc@freebsd.org Thu Feb 7 18:05:59 2019 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 05C8614B1312 for ; Thu, 7 Feb 2019 18:05:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 8160B6C59E for ; Thu, 7 Feb 2019 18:05:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 4196B14B130F; Thu, 7 Feb 2019 18:05:58 +0000 (UTC) Delivered-To: ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1CB5B14B130E for ; Thu, 7 Feb 2019 18:05:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9DEDC6C59C for ; Thu, 7 Feb 2019 18:05:57 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id AB81BCCD5 for ; Thu, 7 Feb 2019 18:05:56 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id x17I5uJJ061944 for ; Thu, 7 Feb 2019 18:05:56 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id x17I5udc061934 for ppc@FreeBSD.org; Thu, 7 Feb 2019 18:05:56 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: ppc@FreeBSD.org Subject: [Bug 235060] [boot] FreeBSD 12.0 Release DVD and CD will not boot on PowerMac G5 Quad Date: Thu, 07 Feb 2019 18:05:56 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 12.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: dclarke@blastwave.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ppc@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Feb 2019 18:05:59 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D235060 Dennis Clarke changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dclarke@blastwave.org --- Comment #1 from Dennis Clarke --- While I do understand the frustration of downloading a "release" DVD or CD install image and then receiving a less than perfect result it should be said that the Apple PowerMac G5 Quad ( and similar ) is an artifact of historical computing machinery interest and not a current system architecture. Whereas one may also claim that the IBM Power architecture is very current and of very significant interest. This does mean to say that the now ancient IBM RS/6000 Model 7317 is not to be considered a production class machine. It was based on the now twenty year old IBM PPC 604e and it is a fascinating system to=20 perform experiments with but merely as an artifact. A reasonable and even modern software system with very modern ZFS implementation would be nearly impossible to run effectively on such hardware. The more fascinating IBM PPC 970MP based Apple PowerMac G5 11,2 models are now well over a decade old and face a similar problem. They are simply not at all to be considered "production" class or "tier 1" type systems. A lot of work has happened to keep such machines runnable in various software projects and they even provide interesting data regarding low level compiler functions but extensive testing simply is not possible for any variation of "production" or "tier 1" level functions. Myself and Justin Hibbits and others have done fairly extensive testing of the FreeBSD release candidate DVD images and found that some minor adjustments to the boot loader stage are required in order to get a reasonable installation to work. For an example please see :=20 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D233579#c7 At this time there should be a warning on the FreeBSD PPC project page which illustrates that systems such as the Apple PowerMac G5 and even older IBM RS/6000 units may not work as expected. A more modern class of system such as the IBM POWER9 based Talos would be expected to work as a very reasonable day to day unit and yet it is still "tier 2".=20 --=20 Dennis Clarke RISC-V/SPARC/PPC/ARM/CISC UNIX and Linux spoken GreyBeard and suspenders optional --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-ppc@freebsd.org Thu Feb 7 21:48:50 2019 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D3BDD14C571B for ; Thu, 7 Feb 2019 21:48:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 4CF72758DE for ; Thu, 7 Feb 2019 21:48:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 06C9D14C571A; Thu, 7 Feb 2019 21:48:49 +0000 (UTC) Delivered-To: ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E8C5914C5718 for ; Thu, 7 Feb 2019 21:48:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 84E0B758DC for ; Thu, 7 Feb 2019 21:48:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 37D08ECEB for ; Thu, 7 Feb 2019 21:48:47 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id x17Lmlkt014915 for ; Thu, 7 Feb 2019 21:48:47 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id x17LmlmX014914 for ppc@FreeBSD.org; Thu, 7 Feb 2019 21:48:47 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: ppc@FreeBSD.org Subject: [Bug 233579] ppc64 r341455 will panic on boot with usefdt=1 Date: Thu, 07 Feb 2019 21:48:47 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: marklmi26-fbsd@yahoo.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ppc@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Feb 2019 21:48:50 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D233579 --- Comment #13 from Mark Millard --- (In reply to Mark Millard from comment #12) (PowerMac G5 "4 core" (system total) context, with 16 GiByte of RAM.) I tested head -r341836 using usefdt=3D1 mode based on a build the modern /usr/src/sys/powerpc/include/vmparam.h (but still smp enabled) and the results of repeated boot attempts were mixed: many boot failures but some boot successes. In some cases it took dozens of attempts to get a success. I also had some example of a bunch of successful boots in a row. The failures were: stopping during the "Waking up CPU" sequence where, other than for CPU 0, "Adding CPU" messages did not show up and and at least one "Waking up CPU" did not show up before the boot hung up. But each hang up at least one did show before the hang-up. Note: No panics occurred, just hang ups. Side note on the shutdown isde of things: There is also a shutdown issue of some the buf*maeomon* shutdowns timing out instead of reporting "done". Which timeout varies. But this specific point is also true of using the older VM_MAX_KERNEL_ADDRESS value: just the usefdt=3D1 use seems sufficient for this to be an issue. The combination of the old VM_MAX_KERNEL_ADDRESS and not using usefdt mode dos not show this behavior in my testing. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-ppc@freebsd.org Thu Feb 7 21:56:23 2019 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 33C2714C5B59 for ; Thu, 7 Feb 2019 21:56:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id BB1A975EB3 for ; Thu, 7 Feb 2019 21:56:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 7B61D14C5B58; Thu, 7 Feb 2019 21:56:22 +0000 (UTC) Delivered-To: ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 674F914C5B56 for ; Thu, 7 Feb 2019 21:56:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F0B3475EB1 for ; Thu, 7 Feb 2019 21:56:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 38022EE58 for ; Thu, 7 Feb 2019 21:56:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id x17LuLPM032097 for ; Thu, 7 Feb 2019 21:56:21 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id x17LuLQg032095 for ppc@FreeBSD.org; Thu, 7 Feb 2019 21:56:21 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: ppc@FreeBSD.org Subject: [Bug 233579] ppc64 r341455 will panic on boot with usefdt=1 Date: Thu, 07 Feb 2019 21:56:21 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: dclarke@blastwave.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ppc@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Feb 2019 21:56:23 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D233579 --- Comment #14 from Dennis Clarke --- re : stopping during the "Waking up CPU". I see the exact same behavior here on a PMacG5_11,2 unit. Let's just call them G511,2 for short.=20 Again, I feel strongly that this is historical computing with the side effect that the G511,2 can be had on eBay and everywhere cheaply. So=20 the user base is out there. That alone justifies my interest. That and the embedded space with is a whole other kettle of fish.=20 I will see if I can get a build going with head whatever that is today and try a few more experiments but using a mixture of :=20 debug.rman_debug=3D1 debug.verbose_sysinit=3D1 usefdt=3D1=20 kern.smp.disabled=3D1 I check in via irc and this may be worth looking at further but without a decent serial console the process is, as you know, a miserable process. --=20 Dennis Clarke RISC-V/SPARC/PPC/ARM/CISC UNIX and Linux spoken GreyBeard and suspenders optional --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-ppc@freebsd.org Thu Feb 7 22:08:07 2019 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3595A14C6099 for ; Thu, 7 Feb 2019 22:08:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id BF39F76539 for ; Thu, 7 Feb 2019 22:08:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 7874114C6097; Thu, 7 Feb 2019 22:08:06 +0000 (UTC) Delivered-To: ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 649D114C6095 for ; Thu, 7 Feb 2019 22:08:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EEDED7652F for ; Thu, 7 Feb 2019 22:08:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 2015FEFCD for ; Thu, 7 Feb 2019 22:08:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id x17M85qg085933 for ; Thu, 7 Feb 2019 22:08:05 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id x17M84xU085932 for ppc@FreeBSD.org; Thu, 7 Feb 2019 22:08:04 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: ppc@FreeBSD.org Subject: [Bug 233579] ppc64 r341455 will panic on boot with usefdt=1 Date: Thu, 07 Feb 2019 22:08:05 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: marklmi26-fbsd@yahoo.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ppc@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Feb 2019 22:08:07 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D233579 --- Comment #15 from Mark Millard --- (In reply to Mark Millard from comment #13) I forgot to mention a few possibly-important context points: I tried debug kernsls and non-debug kernsls that I had built. usefdt mode did not mix well with unload/load/boot and related sequences. So the tests in question were for without switching kernels from the loader prompt: just booting the default kernel path. The builds were via powerpc64-xtoolchain-gcc related build tools. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-ppc@freebsd.org Thu Feb 7 22:29:49 2019 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EB28C14C6ABB for ; Thu, 7 Feb 2019 22:29:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 7CF9477120 for ; Thu, 7 Feb 2019 22:29:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 40AC614C6AB7; Thu, 7 Feb 2019 22:29:48 +0000 (UTC) Delivered-To: ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2F07114C6AB6 for ; Thu, 7 Feb 2019 22:29:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C1CFB7711E for ; Thu, 7 Feb 2019 22:29:47 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 063C4F2FC for ; Thu, 7 Feb 2019 22:29:47 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id x17MTkNh029591 for ; Thu, 7 Feb 2019 22:29:46 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id x17MTkA5029590 for ppc@FreeBSD.org; Thu, 7 Feb 2019 22:29:46 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: ppc@FreeBSD.org Subject: [Bug 233579] ppc64 r341455 will panic on boot with usefdt=1 Date: Thu, 07 Feb 2019 22:29:47 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: marklmi26-fbsd@yahoo.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ppc@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Feb 2019 22:29:49 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D233579 --- Comment #16 from Mark Millard --- (In reply to Dennis Clarke from comment #14) If you are also no longer seeing panics for usefdt=3D1 mode, the this specific bugzilla id should possibly be closed as overcome by events as of at least (say) -r341836 --or its description should be changed to reference more current behavior of a later version. (Close is probably the right answer in my view.) (My current context make even monitoring irc problematical. It will be some time before I'm back to doing that.) --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-ppc@freebsd.org Thu Feb 7 22:36:58 2019 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C1B4714C6F08 for ; Thu, 7 Feb 2019 22:36:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 5C64D7778C for ; Thu, 7 Feb 2019 22:36:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 1ACD514C6F07; Thu, 7 Feb 2019 22:36:58 +0000 (UTC) Delivered-To: ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0926B14C6F06 for ; Thu, 7 Feb 2019 22:36:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9BEEB7778A for ; Thu, 7 Feb 2019 22:36:57 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id E03CBF465 for ; Thu, 7 Feb 2019 22:36:56 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id x17MauL2046118 for ; Thu, 7 Feb 2019 22:36:56 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id x17MauaX046117 for ppc@FreeBSD.org; Thu, 7 Feb 2019 22:36:56 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: ppc@FreeBSD.org Subject: [Bug 233579] ppc64 r341455 will panic on boot with usefdt=1 Date: Thu, 07 Feb 2019 22:36:56 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: dclarke@blastwave.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ppc@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Feb 2019 22:36:58 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D233579 --- Comment #17 from Dennis Clarke --- Feel free to close this as "more or less fixed" and then we can move onward= s. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-ppc@freebsd.org Thu Feb 7 22:49:33 2019 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 22AF114C7401 for ; Thu, 7 Feb 2019 22:49:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id AB6DF77F8C for ; Thu, 7 Feb 2019 22:49:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 6E9E914C7400; Thu, 7 Feb 2019 22:49:32 +0000 (UTC) Delivered-To: ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5BCB414C73FE for ; Thu, 7 Feb 2019 22:49:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D484D77F8A for ; Thu, 7 Feb 2019 22:49:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 149D9F5F9 for ; Thu, 7 Feb 2019 22:49:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id x17MnU32070006 for ; Thu, 7 Feb 2019 22:49:30 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id x17MnUba070005 for ppc@FreeBSD.org; Thu, 7 Feb 2019 22:49:30 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: ppc@FreeBSD.org Subject: [Bug 233579] ppc64 r341455 will panic on boot with usefdt=1 Date: Thu, 07 Feb 2019 22:49:31 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: marklmi26-fbsd@yahoo.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ppc@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Feb 2019 22:49:33 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D233579 --- Comment #18 from Mark Millard --- (In reply to Dennis Clarke from comment #17) I can not close something you submitted, only what I have submitted myself. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-ppc@freebsd.org Thu Feb 7 22:54:54 2019 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1516414C7B4B for ; Thu, 7 Feb 2019 22:54:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id A3D9A805E0 for ; Thu, 7 Feb 2019 22:54:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 6258414C7B48; Thu, 7 Feb 2019 22:54:53 +0000 (UTC) Delivered-To: ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4FAFC14C7B47 for ; Thu, 7 Feb 2019 22:54:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D7AF4805DE for ; Thu, 7 Feb 2019 22:54:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 0689CF766 for ; Thu, 7 Feb 2019 22:54:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id x17Msphx085059 for ; Thu, 7 Feb 2019 22:54:51 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id x17MspNL085058 for ppc@FreeBSD.org; Thu, 7 Feb 2019 22:54:51 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: ppc@FreeBSD.org Subject: [Bug 233579] ppc64 r341455 will panic on boot with usefdt=1 Date: Thu, 07 Feb 2019 22:54:52 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: dclarke@blastwave.org X-Bugzilla-Status: Closed X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ppc@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Feb 2019 22:54:54 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D233579 Dennis Clarke changed: What |Removed |Added ---------------------------------------------------------------------------- Status|New |Closed Resolution|--- |FIXED --- Comment #19 from Dennis Clarke --- Justin Hibbits and Dennis Clarke state the panic no longer happens. Other things happen. --=20 Dennis Clarke RISC-V/SPARC/PPC/ARM/CISC UNIX and Linux spoken GreyBeard and suspenders optional --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-ppc@freebsd.org Fri Feb 8 22:23:48 2019 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5EE7314C89A1 for ; Fri, 8 Feb 2019 22:23:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id DD1486FA1A for ; Fri, 8 Feb 2019 22:23:47 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 9833B14C899F; Fri, 8 Feb 2019 22:23:47 +0000 (UTC) Delivered-To: ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 823C914C899E for ; Fri, 8 Feb 2019 22:23:47 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 123A66FA19 for ; Fri, 8 Feb 2019 22:23:47 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 6103F1C498 for ; Fri, 8 Feb 2019 22:23:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id x18MNkll067540 for ; Fri, 8 Feb 2019 22:23:46 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id x18MNkGX067539 for ppc@FreeBSD.org; Fri, 8 Feb 2019 22:23:46 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: ppc@FreeBSD.org Subject: [Bug 235060] [boot] FreeBSD 12.0 Release DVD and CD will not boot on PowerMac G5 Quad Date: Fri, 08 Feb 2019 22:23:46 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 12.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: dclarke@blastwave.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ppc@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Feb 2019 22:23:48 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D235060 --- Comment #2 from Dennis Clarke --- Actually .. these things may happen as r343862 iso dvd is not bootable at all on that hardware. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-ppc@freebsd.org Sat Feb 9 08:28:23 2019 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9120F14DAE0A for ; Sat, 9 Feb 2019 08:28:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 1E9F98A03E for ; Sat, 9 Feb 2019 08:28:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id D1F3C14DAE09; Sat, 9 Feb 2019 08:28:22 +0000 (UTC) Delivered-To: ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 93C2B14DAE08 for ; Sat, 9 Feb 2019 08:28:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2BC7A8A03D for ; Sat, 9 Feb 2019 08:28:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 7A2FD1C8D for ; Sat, 9 Feb 2019 08:28:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id x198SLWg013644 for ; Sat, 9 Feb 2019 08:28:21 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id x198SLit013643 for ppc@FreeBSD.org; Sat, 9 Feb 2019 08:28:21 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: ppc@FreeBSD.org Subject: [Bug 235060] [boot] FreeBSD 12.0 Release DVD and CD will not boot on PowerMac G5 Quad Date: Sat, 09 Feb 2019 08:28:20 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 12.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: dclarke@blastwave.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ppc@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Feb 2019 08:28:23 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D235060 --- Comment #3 from Dennis Clarke --- I have done a test and neatly installed 12.0-RELEASE r341666 GENERIC on a PowerMac G5 quad 11,2 thus : hydra# uptime 8:26AM up 7 mins, 1 user, load averages: 0.19, 0.23, 0.16 hydra#=20 hydra# sysctl hw.ncpu hw.ncpu: 4 hydra# dmesg=20 ---<>--- Copyright (c) 1992-2018 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD is a registered trademark of The FreeBSD Foundation. FreeBSD 12.0-RELEASE r341666 GENERIC powerpc gcc version 4.2.1 20070831 patched [FreeBSD] VT(ofwfb): resolution 1280x1024 cpu0: IBM PowerPC 970MP revision 1.1, 2500.34 MHz cpu0: Features dc000000 cpu0: HID0 1511081 real memory =3D 8542404608 (8146 MB) avail memory =3D 8152752128 (7775 MB) FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs random: unblocking device. random: entropy device external interface kbd0 at kbdmux0 ofwbus0: on nexus0 cpulist0: on ofwbus0 cpu0: on cpulist0 pcr0: on cpu0 cpu1: on cpulist0 pcr1: on cpu1 cpu2: on cpulist0 pcr2: on cpu2 cpu3: on cpulist0 pcr3: on cpu3 powermac_nvram0: mem 0xfff04000-0xfff07fff on ofwbus0 powermac_nvram0: bank0 generation 460, bank1 generation 461 unin0: mem 0xf8000000-0xf8ffffff on ofwb= us0 unin0: Version 66 iichb0: mem 0xf8001000-0xf8001fff irq 0 on unin0 iicbus0: on iichb0 iic0: on iicbus0 ds17750: at addr 0x94 on iicbus0 ds16310: at addr 0x96 on iicbus0 max66900: at addr 0x98 on iicbus0 max66901: at addr 0x9c on iicbus0 htpic0: mem 0xf8040000-0xf807ffff on unin0 pcib0: mem 0xf0000000-0xf1ffffff on ofwbus0 pci0: on pcib0 vgapci0: mem 0xa1000000-0xa1ffffff,0x90000000-0x9fffffff,0xa0000000-0xa0ffffff irq 3 at device 0.0 on pci0 vgapci0: Boot video device pcib1: mem 0xf2000000-0xf47fffff,0xf8070000-0xf8070fff on ofwbus0 pcib1: 86 HT IRQs on device 7.0 pci1: on pcib1 pcib1: Enabling MSI window for HyperTransport slave at pci1:0:1:0 pcib2: at device 1.0 on pci1 pci2: on pcib2 pcib3: at device 2.0 on pci1 pci3: on pcib3 bge0: mem 0xfa530000-0xfa53ffff,0xfa520000-0xfa52ffff irq 66 at device 4.0 on pci3 bge0: CHIP ID 0x00008003; ASIC REV 0x08; CHIP REV 0x80; PCI-X 33 MHz miibus0: on bge0 brgphy0: PHY 1 on miibus0 brgphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, 1000baseT-master, 1000baseT-FDX, 1000baseT-FDX-master, auto, auto-flow bge0: Ethernet address: 00:14:51:64:67:10 bge1: mem 0xfa510000-0xfa51ffff,0xfa500000-0xfa50ffff irq 67 at device 4.1 on pci3 bge1: CHIP ID 0x00008003; ASIC REV 0x08; CHIP REV 0x80; PCI-X 33 MHz miibus1: on bge1 brgphy1: PHY 1 on miibus1 brgphy1: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, 1000baseT-master, 1000baseT-FDX, 1000baseT-FDX-master, auto, auto-flow bge1: Ethernet address: 00:14:51:64:67:11 pcib4: at device 3.0 on pci1 pci4: on pcib4 pcib5: at device 4.0 on pci1 pci5: on pcib5 pcib6: at device 5.0 on pci1 pci6: on pcib6 pcib7: at device 6.0 on pci1 pci7: on pcib7 pcib8: at device 7.0 on pci1 pci8: on pcib8 gem0: mem 0xfa200000-0xfa3fffff at device 15.0= on pci8 gem0: invalid MAC address device_attach: gem0 attach returned 6 pcib9: at device 8.0 on pci1 pci9: on pcib9 macio0: mem 0x80000000-0x8007ffff at device 7.0 on = pci9 macgpio0: mem 0x50-0x8a on macio0 scc0: mem 0x13000-0x13fff,0x8400-0x84ff,0x8500-0x85ff,0x8600-0x86ff,0x8700-0x87ff irq 23,17,18,24,19,20 on macio0 uart0: on scc0 uart1: on scc0 iichb1: mem 0x18000-0x18fff irq 27 on macio0 iicbus1: on iichb1 iic1: on iicbus1 onyx0: at addr 0x8c on iicbus1 iicbus1: at addr 0x24 pcm0: mem 0x10000-0x10fff,0x8000-0x80ff,0x8100-0x81ff irq 28,11,12,30,15,16 on macio0 ohci0: mem 0x80082000-0x80082fff irq 70 at de= vice 11.0 on pci9 usbus0 on ohci0 ohci1: mem 0x80081000-0x80081fff irq 70 at de= vice 11.1 on pci9 usbus1 on ohci1 ehci0: mem 0x80080000-0x800800ff irq 70= at device 11.2 on pci9 usbus2: EHCI version 1.0 usbus2 on ehci0 pcib10: at device 9.0 on pci1 pci10: on pcib10 atapci0: mem 0xfa402000-0xfa403fff irq = 10 at device 12.0 on pci10 pcib1: failed to reserve resource for pcib10 atapci0: 0x10 bytes of rid 0x20 res 4 failed (0, 0xffffffffffffffff). ata2: at channel 0 on atapci0 ata3: at channel 1 on atapci0 ata4: at channel 2 on atapci0 ata5: at channel 3 on atapci0 ata0: mem 0xfa404000-0xfa407fff irq 38,37 at device 13.0 on pci10 fwohci0: <1394 Open Host Controller Interface> mem 0xfa400000-0xfa400fff ir= q 39 at device 14.0 on pci10 fwohci0: OHCI version 1.0 (ROM=3D0) fwohci0: No. of Isochronous channels is 8. fwohci0: EUI64 00:11:24:ff:fe:e5:13:d0 fwohci0: invalid speed 7 (fixed to 3). fwohci0: Phy 1394a available S800, 3 ports. fwohci0: Link S800, max_rec 4096 bytes. firewire0: on fwohci0 fwe0: on firewire0 if_fwe0: Fake Ethernet address: 02:11:24:e5:13:d0 fwe0: Ethernet address: 02:11:24:e5:13:d0 sbp0: on firewire0 fwohci0: Initiate bus reset fwohci0: fwohci_intr_core: BUS reset fwohci0: PhysicalUpperBound register is not implemented. Physical memory access is limited to the first 4GB fwohci0: PhysicalUpperBound =3D 0x00000000 fwohci0: fwohci_intr_core: node_id=3D0x00000001, SelfID Count=3D1, CYCLEMAS= TER mode smu0: on ofwbus0 smu0: registered as a time-of-day clock, resolution 0.001000s iichb2: on smu0 iicbus2: on iichb2 iic2: on iicbus2 smusat0: at addr 0xb0 on iicbus2 smusat1: at addr 0xb2 on iicbus2 iicbus2: at addr 0xd4 iichb3: on smu0 iicbus3: on iichb3 iic3: on iicbus3 Timecounter "timebase" frequency 33333333 Hz quality 0 Event timer "decrementer" frequency 33333333 Hz quality 1000 Timecounters tick every 1.000 msec firewire0: 2 nodes, maxhop <=3D 1 cable IRM irm(1) (me)=20 firewire0: bus manager 1=20 bge0: link state changed to UP max66900: 2 sensors detected. usbus0: 12Mbps Full Speed USB v1.0 usbus1: 12Mbps Full Speed USB v1.0 max66901: 2 sensors detected. ugen1.1: at usbus1 uhub0: on usbus1 ugen0.1: at usbus0 uhub1: on usbus0 usbus2: 480Mbps High Speed USB v2.0 ugen2.1: at usbus2 uhub2: on usbus2 uhub0: 2 ports with 2 removable, self powered uhub1: 3 ports with 3 removable, self powered uhub2: 5 ports with 5 removable, self powered ada0 at ata2 bus 0 scbus0 target 0 lun 0 ada0: ATA-6 SATA 1.x device ada0: Serial Number 4MR3C8TG ada0: 150.000MB/s transfers (SATA 1.x, UDMA5, PIO 8192bytes) ada0: 76319MB (156301488 512 byte sectors) SMP: AP CPU #1 launched SMP: AP CPU #3 launched SMP: AP CPU #2 launched Trying to mount root from ufs:/dev/ada0s3 [rw]... cd0 at ata0 bus 0 scbus4 target 0 lun 0 cd0: Removable CD-ROM SCSI device cd0: Serial Number M0063NE3358 cd0: 66.700MB/s transfers (UDMA4, ATAPI 12bytes, PIO 65534bytes) cd0: 4482MB (2295104 2048 byte sectors) ugen2.2: at usbus2 umass0 on uhub2 umass0: on usbus2 umass0: SCSI over Bulk-Only; quirks =3D 0x4000 umass0:6:0: Attached to scbus6 da0 at umass-sim0 bus 0 scbus6 target 0 lun 0 da0: Fixed Direct Access SPC-4 SCSI device da0: Serial Number 575857314342313333363530 da0: 40.000MB/s transfers da0: 1907697MB (3906963456 512 byte sectors) da0: quirks=3D0x2 ugen1.2: at usbus1 ukbd0 on uhub0 ukbd0: on usbus1 kbd1 at ukbd0 uhid0 on uhub0 uhid0: on usbus1 lo0: link state changed to UP bge0: link state changed to DOWN bge0: link state changed to UP module_register: cannot register gem/miibus from if_gem.ko; already loaded = from kernel Module gem/miibus failed to register: 17 module_register: cannot register pci/gem from if_gem.ko; already loaded from kernel Module pci/gem failed to register: 17 hydra# I have tested with usefdt=3D1 and I see a kernel panic. Given that I had to capture the panic data from usefdt with a camera I will doucment that tomorrow.=20 --=20 Dennis Clarke RISC-V/SPARC/PPC/ARM/CISC UNIX and Linux spoken GreyBeard and suspenders optional --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-ppc@freebsd.org Sat Feb 9 08:39:00 2019 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 671D614DB1C1 for ; Sat, 9 Feb 2019 08:39:00 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id ED8928A41F for ; Sat, 9 Feb 2019 08:38:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id A76F714DB1BF; Sat, 9 Feb 2019 08:38:59 +0000 (UTC) Delivered-To: ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 94B6314DB1BE for ; Sat, 9 Feb 2019 08:38:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2EA618A41B for ; Sat, 9 Feb 2019 08:38:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 66B941E0C for ; Sat, 9 Feb 2019 08:38:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id x198cwUk033310 for ; Sat, 9 Feb 2019 08:38:58 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id x198cwTM033309 for ppc@FreeBSD.org; Sat, 9 Feb 2019 08:38:58 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: ppc@FreeBSD.org Subject: [Bug 234539] [PowerPC64] panic: FPU already enabled for thread Date: Sat, 09 Feb 2019 08:38:58 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: crash, needs-qa X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: koobs@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ppc@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Feb 2019 08:39:00 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D234539 Kubilay Kocak changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |crash, needs-qa Status|New |Open --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-ppc@freebsd.org Sat Feb 9 18:26:30 2019 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8BFF414C53F1 for ; Sat, 9 Feb 2019 18:26:30 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 268D075123 for ; Sat, 9 Feb 2019 18:26:30 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id DAE0F14C53F0; Sat, 9 Feb 2019 18:26:29 +0000 (UTC) Delivered-To: ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C822214C53EF for ; Sat, 9 Feb 2019 18:26:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6501275120 for ; Sat, 9 Feb 2019 18:26:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 8E6BF7646 for ; Sat, 9 Feb 2019 18:26:28 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id x19IQSqw094701 for ; Sat, 9 Feb 2019 18:26:28 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id x19IQSCw094700 for ppc@FreeBSD.org; Sat, 9 Feb 2019 18:26:28 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: ppc@FreeBSD.org Subject: [Bug 235060] [boot] FreeBSD 12.0 Release DVD and CD will not boot on PowerMac G5 Quad Date: Sat, 09 Feb 2019 18:26:28 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 12.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: dclarke@blastwave.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ppc@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Feb 2019 18:26:30 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D235060 --- Comment #4 from Dennis Clarke --- I think we could re-release another dvd install image with a loader.conf config that sets kern.smp.disabled=3D1 as a manner to=20 deal with troublesome install hardware. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-ppc@freebsd.org Sat Feb 9 19:26:12 2019 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 283FB14C6EF9 for ; Sat, 9 Feb 2019 19:26:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id AFFF577057 for ; Sat, 9 Feb 2019 19:26:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 73A1E14C6EED; Sat, 9 Feb 2019 19:26:11 +0000 (UTC) Delivered-To: ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5F86F14C6EEC for ; Sat, 9 Feb 2019 19:26:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DAA7C77054 for ; Sat, 9 Feb 2019 19:26:10 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 1F0517F01 for ; Sat, 9 Feb 2019 19:26:10 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id x19JQ9kP048874 for ; Sat, 9 Feb 2019 19:26:09 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id x19JQ9kH048873 for ppc@FreeBSD.org; Sat, 9 Feb 2019 19:26:09 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: ppc@FreeBSD.org Subject: [Bug 235060] [boot] FreeBSD 12.0 Release DVD and CD will not boot on PowerMac G5 Quad Date: Sat, 09 Feb 2019 19:26:10 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 12.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: hamiltcl@verizon.net X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ppc@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Feb 2019 19:26:12 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D235060 --- Comment #5 from Curtis Hamilton --- Maybe it just the system I'm using, but setting kern.smp.disabled=3D1 does = not work at all. This applies the 12-RELEASE r341666 ISO or any earlier candi= date releases.=20=20 Through trial and error, I've only been able to get snapshot head r341614 (13-CURRENT) to boot, as previously noted by Mark Millard. Any ideas? --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-ppc@freebsd.org Sat Feb 9 19:48:35 2019 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9445014C76F8 for ; Sat, 9 Feb 2019 19:48:35 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 27A06778C5 for ; Sat, 9 Feb 2019 19:48:35 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id DF9EB14C76F7; Sat, 9 Feb 2019 19:48:34 +0000 (UTC) Delivered-To: ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CCEFC14C76F5 for ; Sat, 9 Feb 2019 19:48:34 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 67F46778BB for ; Sat, 9 Feb 2019 19:48:34 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 928BD81F3 for ; Sat, 9 Feb 2019 19:48:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id x19JmX25089993 for ; Sat, 9 Feb 2019 19:48:33 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id x19JmXBr089992 for ppc@FreeBSD.org; Sat, 9 Feb 2019 19:48:33 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: ppc@FreeBSD.org Subject: [Bug 235060] [boot] FreeBSD 12.0 Release DVD and CD will not boot on PowerMac G5 Quad Date: Sat, 09 Feb 2019 19:48:33 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 12.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: marklmi26-fbsd@yahoo.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ppc@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Feb 2019 19:48:35 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D235060 Mark Millard changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |marklmi26-fbsd@yahoo.com --- Comment #6 from Mark Millard --- (In reply to Curtis Hamilton from comment #5) You might want to report how much RAM for the system showing the problem. I'm not aware of anything else likely to contribute to variations for the G5 4-core (system total). I'd reported in list messages for 16 GiBytes and 12 GiBytes when requested. Also for a 2-processor (one core each): 8 GiBytes. Almost all my activity has been with the 16 GiByte case. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-ppc@freebsd.org Sat Feb 9 21:53:05 2019 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3C16914CF52E for ; Sat, 9 Feb 2019 21:53:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id C713D84583 for ; Sat, 9 Feb 2019 21:53:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 85C2C14CF526; Sat, 9 Feb 2019 21:53:04 +0000 (UTC) Delivered-To: ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 71AC514CF525 for ; Sat, 9 Feb 2019 21:53:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 085CC84581 for ; Sat, 9 Feb 2019 21:53:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 425F694D9 for ; Sat, 9 Feb 2019 21:53:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id x19Lr33C006231 for ; Sat, 9 Feb 2019 21:53:03 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id x19Lr34D006230 for ppc@FreeBSD.org; Sat, 9 Feb 2019 21:53:03 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: ppc@FreeBSD.org Subject: [Bug 235060] [boot] FreeBSD 12.0 Release DVD and CD will not boot on PowerMac G5 Quad Date: Sat, 09 Feb 2019 21:53:02 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 12.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: hamiltcl@verizon.net X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ppc@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Feb 2019 21:53:05 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D235060 --- Comment #7 from Curtis Hamilton --- (In reply to Mark Millard from comment #6) The system I'm using has 16 GiBytes RAM. --=20 You are receiving this mail because: You are the assignee for the bug.=