Module Name:    src
Committed By:   jmcneill
Date:           Sat Jan  9 13:19:27 UTC 2021

Modified Files:
        src/sys/stand/efiboot/bootaa64: efibootaa64.c

Log Message:
Flush from kernel start, not the entry point.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/stand/efiboot/bootaa64/efibootaa64.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/stand/efiboot/bootaa64/efibootaa64.c
diff -u src/sys/stand/efiboot/bootaa64/efibootaa64.c:1.4 src/sys/stand/efiboot/bootaa64/efibootaa64.c:1.5
--- src/sys/stand/efiboot/bootaa64/efibootaa64.c:1.4	Sat Jan  9 13:15:15 2021
+++ src/sys/stand/efiboot/bootaa64/efibootaa64.c	Sat Jan  9 13:19:27 2021
@@ -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 <[email protected]>
@@ -56,7 +56,7 @@ efi_boot_kernel(u_long marks[MARK_MAX])
 	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);
 	}

Reply via email to