Lines Matching refs:pskb
312 static int ipvlan_rcv_frame(struct ipvl_addr *addr, struct sk_buff **pskb, in ipvlan_rcv_frame() argument
320 struct sk_buff *skb = *pskb; in ipvlan_rcv_frame()
336 *pskb = skb; in ipvlan_rcv_frame()
680 static rx_handler_result_t ipvlan_handle_mode_l3(struct sk_buff **pskb, in ipvlan_handle_mode_l3() argument
686 struct sk_buff *skb = *pskb; in ipvlan_handle_mode_l3()
695 ret = ipvlan_rcv_frame(addr, pskb, false); in ipvlan_handle_mode_l3()
701 static rx_handler_result_t ipvlan_handle_mode_l2(struct sk_buff **pskb, in ipvlan_handle_mode_l2() argument
704 struct sk_buff *skb = *pskb; in ipvlan_handle_mode_l2()
725 ret = ipvlan_handle_mode_l3(pskb, port); in ipvlan_handle_mode_l2()
731 rx_handler_result_t ipvlan_handle_frame(struct sk_buff **pskb) in ipvlan_handle_frame() argument
733 struct sk_buff *skb = *pskb; in ipvlan_handle_frame()
741 return ipvlan_handle_mode_l2(pskb, port); in ipvlan_handle_frame()
743 return ipvlan_handle_mode_l3(pskb, port); in ipvlan_handle_frame()