Design and implementation of zero-copy data path for efficient file transmission

  • Authors:
  • Dong-Jae Kang;Young-Ho Kim;Gyu-Il Cha;Sung-In Jung;Myung-Joon Kim;Hae-Young Bae

  • Affiliations:
  • Dept. of Computer Science and Information Engineering, In-Ha University, Incheon, Korea;Digital Home Division, ETRI, Internet Server Group, Daejeon, Korea;Digital Home Division, ETRI, Internet Server Group, Daejeon, Korea;Digital Home Division, ETRI, Internet Server Group, Daejeon, Korea;Digital Home Division, ETRI, Internet Server Group, Daejeon, Korea;Dept. of Computer Science and Information Engineering, In-Ha University, Incheon, Korea

  • Venue:
  • HPCC'06 Proceedings of the Second international conference on High Performance Computing and Communications
  • Year:
  • 2006

Quantified Score

Hi-index 0.00

Visualization

Abstract

Huge requests for file transmission by concurrent users cause excessive memory copy operations and system calls between kernel and user space, which are very expensive and require many CPU cycles for processing. And it has been a bottleneck that limits the number of serviceable requests and prevents CPU resources from being allocated to other processes. In this paper, we suppose the zero-copy data path for efficient file transmission to solve the upper described problems. To do that, we used existing system call interface, sendfile, for file transmission from one device to another and used the same buffer page to transmit a file. The supposed zero-copy data path reduces CPU cost per transaction by eliminating CPU copies between kernel and user space and by avoiding unnecessary system calls in user space. The improved CPU efficiency means that a larger number of requests can be serviced with the same CPU configuration.