* clean up buildworld/kernel compilation warnings
* Port DTrace
* Port Linux emulation to x86-64
+* Bring BSD-licensed ext2fs from FreeBSD.
+
### Code to port/sync from FreeBSD
* PCI code (to take advantage of power saving features)
### Implement boot cache
* Effectively a smart readahead.
-* Store the pattern of incoming read requests of the boot disk. (Likely into an array structure for better linear readback, We mmap() the whole thing into RAM on boot.)
-* Sort pattern into a playback list. (Burstsort or a simple quick sort to get things going?)
-* Provide feedback of boot cache playback list hit rate for better adaptiveness.
+* Store the pattern of incoming read requests of the boot disk.
### Improve kernel boot speed
* Research source of delays in boot process, keyboard init, scsi?
* Add timeout functionality to lwkt_waitmsg().
### Filesystem extended attributes
-* Bring BSD-licensed ext2fs from FreeBSD.
* Generic VFS attributes layer
* Emulate attributes ala Darwin
* Allow filesystems to define their own attribute vop ops