Re: Copy data from one SKB to another

2007-02-24 Thread Kristian Evensen
LDB wrote: kalash nainwal wrote: On 2/22/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Hello, I am working on optimizing the TCP-code for a certain type of TCP-stream, and to make one of my optimizations work I need to copy data from one SKB (the data field of the skb) to another SK

Re: Copy data from one SKB to another

2007-02-24 Thread LDB
kalash nainwal wrote: > On 2/22/07, [EMAIL PROTECTED] > <[EMAIL PROTECTED]> wrote: >> Hello, >> >> I am working on optimizing the TCP-code for a certain type of TCP-stream, >> and to make one of my optimizations work I need to copy data from one SKB >> (the data field of the skb) to another SKB (da

Re: Copy data from one SKB to another

2007-02-24 Thread kalash nainwal
On 2/22/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Hello, I am working on optimizing the TCP-code for a certain type of TCP-stream, and to make one of my optimizations work I need to copy data from one SKB (the data field of the skb) to another SKB (data field). Currently I am using memcp

Copy data from one SKB to another

2007-02-22 Thread kristrev
Hello, I am working on optimizing the TCP-code for a certain type of TCP-stream, and to make one of my optimizations work I need to copy data from one SKB (the data field of the skb) to another SKB (data field). Currently I am using memcpy, and it does what it is supposed to, but I am curious as