Lines Matching refs:skb
29 __be16 (*type_trans)(struct sk_buff *skb, struct net_device *dev);
30 int (*netif_rx)(struct sk_buff *skb);
31 netdev_tx_t (*xmit)(struct sk_buff *skb, struct net_device *dev);
44 netdev_tx_t (*xmit)(struct sk_buff *skb, struct net_device *dev);
77 static __inline__ void debug_frame(const struct sk_buff *skb) in debug_frame() argument
81 for (i=0; i < skb->len; i++) { in debug_frame()
86 printk(" %02X", skb->data[i]); in debug_frame()
99 netdev_tx_t hdlc_start_xmit(struct sk_buff *skb, struct net_device *dev);
106 static __inline__ __be16 hdlc_type_trans(struct sk_buff *skb, in hdlc_type_trans() argument
111 skb->dev = dev; in hdlc_type_trans()
112 skb_reset_mac_header(skb); in hdlc_type_trans()
115 return hdlc->proto->type_trans(skb, dev); in hdlc_type_trans()