vmsplice(2) | System Calls Manual | vmsplice(2) |
vmsplice - splice user pages to/from a pipe
Standard C library (libc, -lc)
#define _GNU_SOURCE /* See feature_test_macros(7) */ #include <fcntl.h>
ssize_t vmsplice(int fd, const struct iovec *iov, size_t nr_segs, unsigned int flags);
If fd is opened for writing, the vmsplice() system call maps nr_segs ranges of user memory described by iov into a pipe. If fd is opened for reading, the vmsplice() system call fills nr_segs ranges of user memory described by iov from a pipe. The file descriptor fd must refer to a pipe.
The pointer iov points to an array of iovec structures as described in iovec(3type).
The flags argument is a bit mask that is composed by ORing together zero or more of the following values:
Upon successful completion, vmsplice() returns the number of bytes transferred to the pipe. On error, vmsplice() returns -1 and errno is set to indicate the error.
Linux.
Linux 2.6.17, glibc 2.5.
vmsplice() follows the other vectorized read/write type functions when it comes to limitations on the number of segments being passed in. This limit is IOV_MAX as defined in <limits.h>. Currently, this limit is 1024.
vmsplice() really supports true splicing only from user memory to a pipe. In the opposite direction, it actually just copies the data to user space. But this makes the interface nice and symmetric and enables people to build on vmsplice() with room for future improvement in performance.
splice(2), tee(2), pipe(7)
2023-10-31 | Linux man-pages 6.7 |