From owner-freebsd-current@freebsd.org Sat May 4 19:22:20 2019 Return-Path: Delivered-To: freebsd-current@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 843C81596406 for ; Sat, 4 May 2019 19:22:20 +0000 (UTC) (envelope-from tsoome@me.com) Received: from pv50p00im-ztdg10021101.me.com (pv50p00im-ztdg10021101.me.com [17.58.6.44]) (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 7E5806E067 for ; Sat, 4 May 2019 19:22:19 +0000 (UTC) (envelope-from tsoome@me.com) Received: from nazgul.lan (148-52-235-80.sta.estpak.ee [80.235.52.148]) by pv50p00im-ztdg10021101.me.com (Postfix) with ESMTPSA id 154FD18052C; Sat, 4 May 2019 19:22:16 +0000 (UTC) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 12.4 \(3445.104.8\)) Subject: Re: Got the same error from gptzfsboot this morning From: Toomas Soome In-Reply-To: Date: Sat, 4 May 2019 22:22:08 +0300 Cc: lausts@acm.org, FreeBSD Current Content-Transfer-Encoding: quoted-printable Message-Id: References: <40e6cdff-9502-669b-4543-6e21be5d2ad5@acm.org> To: Warner Losh X-Mailer: Apple Mail (2.3445.104.8) X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:, , definitions=2019-05-04_14:, , signatures=0 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 suspectscore=0 malwarescore=0 phishscore=0 bulkscore=0 spamscore=0 clxscore=1015 mlxscore=0 mlxlogscore=999 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1812120000 definitions=main-1905040143 X-Rspamd-Queue-Id: 7E5806E067 X-Spamd-Bar: ----- X-Spamd-Result: default: False [-5.97 / 15.00]; RCVD_VIA_SMTP_AUTH(0.00)[]; RBL_COMPOSITE_RCVD_IN_DNSWL_MED_DWL_DNSWL_LOW(0.00)[]; TO_DN_SOME(0.00)[]; FREEMAIL_FROM(0.00)[me.com]; R_SPF_ALLOW(-0.20)[+ip4:17.58.0.0/16]; MV_CASE(0.50)[]; RCVD_DKIM_ARC_DNSWL_MED(-0.50)[]; MX_GOOD(-0.01)[cached: mx1.mail.icloud.com]; DKIM_TRACE(0.00)[me.com:+]; DMARC_POLICY_ALLOW(-0.50)[me.com,quarantine]; RCVD_IN_DNSWL_MED(-0.20)[44.6.58.17.list.dnswl.org : 127.0.5.2]; NEURAL_HAM_SHORT(-0.73)[-0.732,0]; RECEIVED_SPAMHAUS_PBL(0.00)[148.52.235.80.zen.spamhaus.org : 127.0.0.10]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; FREEMAIL_ENVFROM(0.00)[me.com]; ASN(0.00)[asn:714, ipnet:17.58.0.0/20, country:US]; MID_RHS_MATCH_FROM(0.00)[]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; R_DKIM_ALLOW(-0.20)[me.com:s=04042017]; FROM_HAS_DN(0.00)[]; RCPT_COUNT_THREE(0.00)[3]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; MIME_GOOD(-0.10)[text/plain]; IP_SCORE(-2.03)[ip: (-5.47), ipnet: 17.58.0.0/20(-2.34), asn: 714(-2.26), country: US(-0.06)]; DWL_DNSWL_LOW(0.00)[me.com.dwl.dnswl.org : 127.0.5.1]; TO_MATCH_ENVRCPT_SOME(0.00)[]; RCVD_COUNT_TWO(0.00)[2]; RCVD_TLS_ALL(0.00)[] X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 May 2019 19:22:20 -0000 > On 4 May 2019, at 21:34, Warner Losh wrote: >=20 > On Thu, May 2, 2019 at 9:12 AM Thomas Laus wrote: >=20 >> Toomas: >>=20 >> My laptop has been booting up flawlessly since I installed the >> gptzfsboot file that you sent. It also successfully rebooted from a >> cold start this morning but I received the same error message just a = few >> minutes ago when powering up again. >>=20 >> gptzfsboot: error 1 LBA 18446744072709551608 >> gptzfsboot: error 1 LBA 1 >> gptzfsboot: No ZFS pools located, can't boot >>=20 >> On my third retry, I was successful. This is the same LBA and error >> number that I was getting previously. >>=20 >=20 > We need to add a disk the error came from indication to that error = message. >=20 and better indication where we did fail. But for this error we already = did find the source - the geli_taste() goes to negative value with = off_t, and then the value is used to read from disk (as unsigned value), = hence we will see the error with really huge LBA. So we need to figure = out why this happens and how to failsafe this all. rgds, toomas