Name

skb_zerocopy — Zero copy skb to skb

Synopsis

void skb_zerocopy (struct sk_buff * to,
 const struct sk_buff * from,
 int len,
 int hlen);
 

Arguments

to

destination buffer

from

-- undescribed --

len

number of bytes to copy from source buffer

hlen

size of linear headroom in destination buffer

Description

Copies up to `len` bytes from `from` to `to` by creating references to the frags in the source buffer.

The `hlen` as calculated by skb_zerocopy_headlen specifies the headroom in the `to` buffer.