Lines Matching defs:skb
18 * @skb: Address of the frame to initialize its MAC header
25 int llc_mac_hdr_init(struct sk_buff *skb,
30 switch (skb->dev->type) {
33 rc = dev_hard_header(skb, skb->dev, ETH_P_802_2, da, sa,
34 skb->len);
47 * @skb: packet to send
58 int llc_build_and_send_ui_pkt(struct llc_sap *sap, struct sk_buff *skb,
62 llc_pdu_header_init(skb, LLC_PDU_TYPE_U, sap->laddr.lsap,
64 llc_pdu_init_as_ui_cmd(skb);
65 rc = llc_mac_hdr_init(skb, skb->dev->dev_addr, dmac);
67 rc = dev_queue_xmit(skb);
69 kfree_skb(skb);