Linux 内核2.6.35 skb_copy_bits 函数和map.c文件
int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len){ int start = skb_headlen(skb); struct sk_buff *frag_iter; int i, copy; if (offset > (int)skb->len - len) goto fault; /* Copy header. */ if ((copy = ...