[PATCH] Introduce sys_splice() system call
This adds support for the sys_splice system call. Using a pipe as a transport, it can connect to files or sockets (latter as output only). From the splice.c comments: "splice": joining two ropes together by interweaving their strands. This is the "extended pipe" functionality, where a pipe is used as an arbitrary in-memory buffer. Think of a pipe as a small kernel buffer that you can use to transfer data from one end to the other. The traditional unix read/write is extended with a "splice()" operation that transfers data buffers to or from a pipe buffer. Named by Larry McVoy, original implementation from Linus, extended by Jens to support splicing to files and fixing the initial implementation bugs. Signed-off-by:Jens Axboe <axboe@suse.de> Signed-off-by:
Linus Torvalds <torvalds@osdl.org>
Showing
- arch/i386/kernel/syscall_table.S 1 addition, 0 deletionsarch/i386/kernel/syscall_table.S
- arch/ia64/kernel/entry.S 1 addition, 0 deletionsarch/ia64/kernel/entry.S
- fs/Makefile 1 addition, 1 deletionfs/Makefile
- fs/ext2/file.c 2 additions, 0 deletionsfs/ext2/file.c
- fs/ext3/file.c 2 additions, 0 deletionsfs/ext3/file.c
- fs/pipe.c 28 additions, 5 deletionsfs/pipe.c
- fs/reiserfs/file.c 2 additions, 0 deletionsfs/reiserfs/file.c
- fs/splice.c 612 additions, 0 deletionsfs/splice.c
- include/asm-i386/unistd.h 2 additions, 1 deletioninclude/asm-i386/unistd.h
- include/asm-ia64/unistd.h 2 additions, 1 deletioninclude/asm-ia64/unistd.h
- include/asm-powerpc/unistd.h 2 additions, 1 deletioninclude/asm-powerpc/unistd.h
- include/asm-x86_64/unistd.h 3 additions, 1 deletioninclude/asm-x86_64/unistd.h
- include/linux/fs.h 4 additions, 0 deletionsinclude/linux/fs.h
- include/linux/syscalls.h 2 additions, 0 deletionsinclude/linux/syscalls.h
- net/socket.c 5 additions, 1 deletionnet/socket.c
Loading
Please register or sign in to comment