scatter gather
A feature of many disk drivers that improves the performance of disk reads and writes by combining many small I/O requests into one.
If data is to be written to sequential locations on disk, the driver "gathers" the data from different locations in RAM and combines the data into one write.
If data is to be read from sequential locations on disk, the driver executes one read and then "scatters" the data to different locations in RAM.