It is zero-copy
Posted Apr 8, 2006 11:14 UTC (Sat) by
axboe (subscriber, #904)
In reply to:
It is zero-copy by giraffedata
Parent article:
Two new system calls: splice() and sync_file_range()
A splice based copy does no copies. The source data is DMA'ed from hardware to the source file page(s), then those pages are moved to the destination and dirted to so will eventually go out to disk again with another DMA operations.
A normal copy will DMA those pages in, allocate pages in the target file address space, copy that data over, and then it'll be DMA'ed to disk again. So two DMA operations, and one full copy of all the data.
So a splice based copy will be zero memory copies, and two DMA "copies" (the dma operation above may be a series of dma transactions, depending on how large the file is). A normal copy contains the same number of DMA operations, but includes a memory copy.
(
Log in to post comments)