Lines Matching refs:pskb
314 static int ipvlan_rcv_frame(struct ipvl_addr *addr, struct sk_buff **pskb,
322 struct sk_buff *skb = *pskb;
338 *pskb = skb;
712 static rx_handler_result_t ipvlan_handle_mode_l3(struct sk_buff **pskb,
718 struct sk_buff *skb = *pskb;
727 ret = ipvlan_rcv_frame(addr, pskb, false);
733 static rx_handler_result_t ipvlan_handle_mode_l2(struct sk_buff **pskb,
736 struct sk_buff *skb = *pskb;
757 ret = ipvlan_handle_mode_l3(pskb, port);
763 rx_handler_result_t ipvlan_handle_frame(struct sk_buff **pskb)
765 struct sk_buff *skb = *pskb;
773 return ipvlan_handle_mode_l2(pskb, port);
775 return ipvlan_handle_mode_l3(pskb, port);