svn commit: r295842 - head/sys/boot/efi/loader/arch/arm64
Andrew Turner
andrew at FreeBSD.org
Sat Feb 20 17:29:06 UTC 2016
Author: andrew
Date: Sat Feb 20 17:29:04 2016
New Revision: 295842
URL: https://svnweb.freebsd.org/changeset/base/295842
Log:
Add a missing call to dev_cleanup from the arm64 loader.efi.
Sponsored by: ABT Systems Ltd
Modified:
head/sys/boot/efi/loader/arch/arm64/exec.c
Modified: head/sys/boot/efi/loader/arch/arm64/exec.c
==============================================================================
--- head/sys/boot/efi/loader/arch/arm64/exec.c Sat Feb 20 13:37:04 2016 (r295841)
+++ head/sys/boot/efi/loader/arch/arm64/exec.c Sat Feb 20 17:29:04 2016 (r295842)
@@ -117,6 +117,8 @@ elf64_exec(struct preloaded_file *fp)
if (err != 0)
return (err);
+ dev_cleanup();
+
/* Clean D-cache under kernel area and invalidate whole I-cache */
clean_addr = (vm_offset_t)efi_translate(fp->f_addr);
clean_size = (vm_offset_t)efi_translate(kernendp) - clean_addr;
More information about the svn-src-all
mailing list