Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 29 Feb 2024 16:14:59 GMT
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 2425dbdff3d7 - main - loader/efi: Small diff reduction
Message-ID:  <202402291614.41TGExi2007456@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by imp:

URL: https://cgit.FreeBSD.org/src/commit/?id=2425dbdff3d7c23f464262517faf1f99a1b51165

commit 2425dbdff3d7c23f464262517faf1f99a1b51165
Author:     Warner Losh <imp@FreeBSD.org>
AuthorDate: 2024-02-29 16:14:41 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2024-02-29 16:14:47 +0000

    loader/efi: Small diff reduction
    
    Make doing the boot once protocol more similar to copies of this code.
    
    Sponsored by:           Netflix
    Reviewed by:            manu
    Differential Revision:  https://reviews.freebsd.org/D44007
---
 stand/efi/loader/main.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/stand/efi/loader/main.c b/stand/efi/loader/main.c
index 12efe594e0e2..e4d62f2e940c 100644
--- a/stand/efi/loader/main.c
+++ b/stand/efi/loader/main.c
@@ -261,8 +261,9 @@ probe_zfs_currdev(uint64_t guid)
 	currdev.dd.d_unit = 0;
 	currdev.pool_guid = guid;
 	currdev.root_guid = 0;
-	set_currdev_devdesc((struct devdesc *)&currdev);
 	devname = devformat(&currdev.dd);
+	set_currdev(devname);
+	printf("Setting currdev to %s\n", devname);
 	init_zfs_boot_options(devname);
 
 	if (zfs_get_bootonce(&currdev, OS_BOOTONCE, buf, sizeof(buf)) == 0) {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202402291614.41TGExi2007456>