git: cdbcf636d3e0 - stable/13 - EFI loader: Don't free bcache for DEVT_DISK devs

From: Colin Percival <cperciva_at_FreeBSD.org>
Date: Wed, 29 Dec 2021 23:06:28 UTC
The branch stable/13 has been updated by cperciva:

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

commit cdbcf636d3e03f5f0565430b23fa5dff6defb6c6
Author:     Colin Percival <cperciva@FreeBSD.org>
AuthorDate: 2021-09-30 21:48:14 +0000
Commit:     Colin Percival <cperciva@FreeBSD.org>
CommitDate: 2021-12-29 22:53:19 +0000

    EFI loader: Don't free bcache for DEVT_DISK devs
    
    Booting on an EC2 c5.xlarge instance, this reduces the number of I/Os
    performed from 609 to 432, reduces the total number of blocks read
    from 61963 to 60797, and reduces the time spent in the loader by 39 ms.
    
    Note that b4cb3fe0e39a allowed the bcache to be retained for most of
    the boot process, but relies on mounting filesystems; this commit
    allows the bcache to be retained at the start of the boot process,
    before the root filesystem has been located.
    
    Sponsored by:   https://www.patreon.com/cperciva
    Differential Revision:  https://reviews.freebsd.org/D32239
    
    (cherry picked from commit ce73f768b76486b1562f207a6fc1cef87065418a)
---
 stand/efi/libefi/efipart.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/stand/efi/libefi/efipart.c b/stand/efi/libefi/efipart.c
index aede28ef40c3..7807c17077a6 100644
--- a/stand/efi/libefi/efipart.c
+++ b/stand/efi/libefi/efipart.c
@@ -949,8 +949,10 @@ efipart_close(struct open_file *f)
 	pd->pd_open--;
 	if (pd->pd_open == 0) {
 		pd->pd_blkio = NULL;
-		bcache_free(pd->pd_bcache);
-		pd->pd_bcache = NULL;
+		if (dev->dd.d_dev->dv_type != DEVT_DISK) {
+			bcache_free(pd->pd_bcache);
+			pd->pd_bcache = NULL;
+		}
 	}
 	if (dev->dd.d_dev->dv_type == DEVT_DISK)
 		return (disk_close(dev));