Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/stand/efiboot/bootaa64 Flush from kernel start, not the ...



details:   https://anonhg.NetBSD.org/src/rev/51c38d79a54e
branches:  trunk
changeset: 949304:51c38d79a54e
user:      jmcneill <jmcneill%NetBSD.org@localhost>
date:      Sat Jan 09 13:19:27 2021 +0000

description:
Flush from kernel start, not the entry point.

diffstat:

 sys/stand/efiboot/bootaa64/efibootaa64.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r d44d313d3ae4 -r 51c38d79a54e sys/stand/efiboot/bootaa64/efibootaa64.c
--- a/sys/stand/efiboot/bootaa64/efibootaa64.c  Sat Jan 09 13:15:15 2021 +0000
+++ b/sys/stand/efiboot/bootaa64/efibootaa64.c  Sat Jan 09 13:19:27 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: efibootaa64.c,v 1.4 2021/01/09 13:15:15 jmcneill Exp $ */
+/*     $NetBSD: efibootaa64.c,v 1.5 2021/01/09 13:19:27 jmcneill Exp $ */
 
 /*-
  * Copyright (c) 2016 Kimihiro Nonaka <nonaka%netbsd.org@localhost>
@@ -56,7 +56,7 @@
        fdt_start = (u_long)efi_fdt_data();
        fdt_size = efi_fdt_size();
 
-       aarch64_dcache_wbinv_range(kernel_entry, kernel_size);
+       aarch64_dcache_wbinv_range(kernel_start, kernel_size);
        if (efi_fdt_size() > 0) {
                aarch64_dcache_wbinv_range(fdt_start, fdt_size);
        }



Home | Main Index | Thread Index | Old Index