dean gaudet writes: > is this too slow for some reason? (does it play well with zero-copy?) His trick ends up with a minimal set of scatter gather entries. That's the whole gain behind the trick he's doing. If you do the TCP_CORK thing, what you end up with is a scatter gather entry in the SKB for the header bits, then the page cache segments. Even if we had the HP sendfile() interface iovec garbage, we would end up with the same number of SKB iovec entries as for the TCP_CORK case today. What TUX basically does is build up the header by hand in a scribble page it uses for header builing, passes that to tcp_sendpage() with MSG_MORE set, then it initiates the sendfile() part. The final effect inside the networking is basically equivalent to using TCP_CORK+sendfile() in userspace, the only difference being that: 1) the scratch page for the headers is maintained per-socket by TCP 2) the header is copied once from user to kernel I would find it amusing to see what adding the header+file caching trick to TUX would do to it's results :-) Later, David S. Miller [EMAIL PROTECTED] - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
- Re: X15 alpha release: as fast as TUX but in user space David S. Miller
- Re: X15 alpha release: as fast as TUX but in user spa... Fabio Riccardi
- Re: X15 alpha release: as fast as TUX but in user space Ingo Molnar
- Re: X15 alpha release: as fast as TUX but in user spa... Ville Herva
- Re: X15 alpha release: as fast as TUX but in user... Ingo Molnar
- Re: X15 alpha release: as fast as TUX but in user... Ingo Molnar
- Re: X15 alpha release: as fast as TUX but in ... Ville Herva
- Re: X15 alpha release: as fast as TUX but... Andi Kleen
- Re: X15 alpha release: as fast as TUX but in user spa... Fabio Riccardi
- Re: X15 alpha release: as fast as TUX but in user... dean gaudet
- Re: X15 alpha release: as fast as TUX but in ... David S. Miller
- Re: X15 alpha release: as fast as TUX but in ... Fabio Riccardi
- Re: X15 alpha release: as fast as TUX but... dean gaudet
- Re: X15 alpha release: as fast as TU... David S. Miller
- Re: X15 alpha release: as fast as TUX but... Ingo Molnar
- Re: X15 alpha release: as fast as TUX but in user... Ingo Molnar
- X15 alpha release: as fast as TUX but in user space Ingo Molnar
- Re: X15 alpha release: as fast as TUX but in user spa... Fabio Riccardi
- Re: X15 alpha release: as fast as TUX but in user... Ingo Molnar
- Re: X15 alpha release: as fast as TUX but in ... Fabio Riccardi
- Re: X15 alpha release: as fast as TUX but... Ingo Molnar