1SKB_COW_HEAD(9) Linux Networking SKB_COW_HEAD(9)
2
3
4
6 skb_cow_head - skb_cow but only making the head writable
7
9 int skb_cow_head(struct sk_buff * skb, unsigned int headroom);
10
12 skb
13 buffer to cow
14
15 headroom
16 needed headroom
17
19 This function is identical to skb_cow except that we replace the
20 skb_cloned check by skb_header_cloned. It should be used when you only
21 need to push on some header and do not need to modify the data.
22
24Kernel Hackers Manual 3.10 June 2019 SKB_COW_HEAD(9)