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;
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"