Home
last modified time | relevance | path

Searched refs:skbcopy (Results 1 – 1 of 1) sorted by relevance

/openbmc/linux/drivers/net/wireless/ralink/rt2x00/
H A Drt2x00debug.c136 struct sk_buff *skbcopy; in rt2x00debug_dump_frame() local
155 skbcopy = alloc_skb(sizeof(*dump_hdr) + skbdesc->desc_len + data_len, in rt2x00debug_dump_frame()
157 if (!skbcopy) { in rt2x00debug_dump_frame()
162 dump_hdr = skb_put(skbcopy, sizeof(*dump_hdr)); in rt2x00debug_dump_frame()
178 skb_put_data(skbcopy, skbdesc->desc, skbdesc->desc_len); in rt2x00debug_dump_frame()
179 skb_put_data(skbcopy, skb->data, skb->len); in rt2x00debug_dump_frame()
181 skb_queue_tail(&intf->frame_dump_skbqueue, skbcopy); in rt2x00debug_dump_frame()