The zero-copy tag has no wiki summary.
11
votes
2answers
477 views
Which file systems support splicing via Linux's splice(2)?
The man page for the splice system call says that splice may fail and set errno to EINVAL if:
Target file system doesn't support splicing; neither of the descriptors refers to a pipe; or offset ...
8
votes
1answer
138 views
Does Python support zero-copy I/O?
I have two open file objects, dest and src. File object dest is opened for writing, with the seek position placed at some offset within the file, and file object src is opened for reading. What I need ...
8
votes
1answer
303 views
vmsplice() and TCP
In the original vmsplice() implementation, it was suggested that if you had a user-land buffer 2x the maximum number of pages that could fit in a pipe, a successful vmsplice() on the second half of ...
5
votes
2answers
153 views
Is zero-copy UDP packing receiving possibly on Linux?
I would like to have UDP packets copied directly from the ethernet adapter into my userspace buffer
Some details on my setup:
I am receiving data from a pair of gigabit ethernet cameras. Combined ...
4
votes
3answers
583 views
communicating between processes with shared-memory results zero-copy?
I am writing a network daemon, on Linux with kernel 2.6, which has
one producer process and N of consumer processes, which does not make any change on the data, and does not create any response back ...
3
votes
1answer
105 views
Does Zero-copy exist in Windows OS?
Reading this zero copy article,
Does Zero-copy exist in Windows OS (server 2003, 2008, 2008 R2) ?
3
votes
2answers
147 views
With sendfile(), is it possible to tell when in_fd is at EOF?
Reading through the man page of the Linux system call sendfile, I am wondering whether it is possible for the calling program to know when in_fd is at EOF. Presumably, this could be signaled by a ...
3
votes
3answers
147 views
Terminology: opposite of “zero copy”?
We're benchmarking some code that we've converted to use sendfile(), the linux zero-copy system call. What's the term for the traditional read()/write() loop that sendfile() replaces? I.e., in our ...
3
votes
2answers
1k views
How can I use Linux's splice() function to copy a file to another file?
here's another question about splice(). I'm hoping to use it to copy files, and am trying to use two splice calls joined by a pipe like the example on splice's Wikipedia page. I wrote a simple test ...
2
votes
2answers
174 views
Linux splice() returning EINVAL (“Invalid argument”)
I'm trying to experiment with using splice (man 2 splice) to copy data from a UDP socket directly to a file. Unfortunately the first call to splice() returns EINVAL.
The man page states:
EINVAL ...
1
vote
2answers
176 views
Linux sockets: Zero-copy local, TCP/IP remote
Networking is my worst area in operating systems, so forgive me for asking perhaps an incomplete question. I've been reading about this for a few hours, but it's kinda swimming in my head. (To me, I ...
1
vote
1answer
248 views
Determining whether a readable file descriptor is the read end of a pipe
I would like to use splice to zero-copy data from STDIN_FILENO to a file descriptor (which could be to a regular file, char or block device, FIFO, or anything that can be opened with open). In order ...
0
votes
0answers
27 views
Linux Zero Copy
I have a PCI device that needs to read and write from userspace. I'm trying to use zero copy; is there a way to allocate, pin, and get the physical address of a userspace address completely within ...
0
votes
0answers
299 views
splice() from pipe to TCP buffered?
xpost from linuxquestions.org, sorry...
I wrote a small test program to see if a simple proxy would benefit from using splice() but it always takes 200ms for the data that I spliced from a pipe to a ...