freebsd-dev/sys/boot/usb
Allan Jude 87ed2b7f5a A new implementation of the loader block cache
The block cache implementation in loader has proven to be almost useless, and in worst case even slowing down the disk reads due to insufficient cache size and extra memory copy.
Also the current cache implementation does not cache reads from CDs, or work with zfs built on top of multiple disks.
Instead of an LRU, this code uses a simple hash (O(1) read from cache), and instead of a single global cache, a separate cache per block device.
The cache also implements limited read-ahead to increase performance.
To simplify read ahead management, the read ahead will not wrap over bcache end, so in worst case, single block physical read will be performed to fill the last block in bcache.

Booting from a virtual CD over IPMI:
0ms latency, before: 27 second, after: 7 seconds
60ms latency, before: over 12 minutes, after: under 5 minutes.

Submitted by:	Toomas Soome <tsoome@me.com>
Reviewed by:	delphij (previous version), emaste (previous version)
Relnotes:	yes
Differential Revision:	https://reviews.freebsd.org/D4713
2016-04-18 23:09:22 +00:00
..
storage A new implementation of the loader block cache 2016-04-18 23:09:22 +00:00
tools Use MAN= to specify that no man page is provided 2016-01-22 21:33:27 +00:00
bsd_usbloader_test.c Use own memory pool of 128K until further, hence that works the best. 2014-05-30 16:49:12 +00:00
Makefile Merge from CheriBSD: 2014-08-04 23:00:13 +00:00
Makefile.test For libstand and sys/boot, split off gcc-only flags into CFLAGS.gcc. 2013-12-26 11:32:39 +00:00
usb_busdma_loader.c Use properly aligned buffer in usb_alloc 2015-11-27 18:13:28 +00:00
usbcore.mk Add support for exynos5_ehci in loader 2015-11-27 18:22:04 +00:00