Lines Matching refs:skb
39 __be16 (*type_trans)(struct sk_buff *skb, struct net_device *dev);
40 int (*netif_rx)(struct sk_buff *skb);
41 netdev_tx_t (*xmit)(struct sk_buff *skb, struct net_device *dev);
54 netdev_tx_t (*xmit)(struct sk_buff *skb, struct net_device *dev);
87 static __inline__ void debug_frame(const struct sk_buff *skb) in debug_frame() argument
91 for (i=0; i < skb->len; i++) { in debug_frame()
96 printk(" %02X", skb->data[i]); in debug_frame()
109 netdev_tx_t hdlc_start_xmit(struct sk_buff *skb, struct net_device *dev);
116 static __inline__ __be16 hdlc_type_trans(struct sk_buff *skb, in hdlc_type_trans() argument
121 skb->dev = dev; in hdlc_type_trans()
122 skb_reset_mac_header(skb); in hdlc_type_trans()
125 return hdlc->proto->type_trans(skb, dev); in hdlc_type_trans()