freebsd-nq/sys/ufs
Poul-Henning Kamp d705e025d0 The getpages VOP was a good stab at getting scatter/gather I/O without
too much kernel copying, but it is not the right way to do it, and it is
in the way for straightening out the buffer cache.

The right way is to pass the VM page array down through the struct
bio to the disk device driver and DMA directly in to/out off the
physical memory.  Once the VM/buf thing is sorted out it is next on
the list.

Retire most of vnode method. ffs_getpages().  It is not clear if what is
left shouldn't be in the default implementation which we now fall back to.

Retire specfs_getpages() as well, as it has no users now.
2004-09-19 08:14:55 +00:00
..
ffs The getpages VOP was a good stab at getting scatter/gather I/O without 2004-09-19 08:14:55 +00:00
ufs Create simple function init_va_filerev() for initializing a va_filerev 2004-09-07 09:17:05 +00:00