Lines Matching refs:pskb
311 static int ipvlan_rcv_frame(struct ipvl_addr *addr, struct sk_buff **pskb, in ipvlan_rcv_frame() argument
319 struct sk_buff *skb = *pskb; in ipvlan_rcv_frame()
335 *pskb = skb; in ipvlan_rcv_frame()
681 static rx_handler_result_t ipvlan_handle_mode_l3(struct sk_buff **pskb, in ipvlan_handle_mode_l3() argument
687 struct sk_buff *skb = *pskb; in ipvlan_handle_mode_l3()
696 ret = ipvlan_rcv_frame(addr, pskb, false); in ipvlan_handle_mode_l3()
702 static rx_handler_result_t ipvlan_handle_mode_l2(struct sk_buff **pskb, in ipvlan_handle_mode_l2() argument
705 struct sk_buff *skb = *pskb; in ipvlan_handle_mode_l2()
726 ret = ipvlan_handle_mode_l3(pskb, port); in ipvlan_handle_mode_l2()
732 rx_handler_result_t ipvlan_handle_frame(struct sk_buff **pskb) in ipvlan_handle_frame() argument
734 struct sk_buff *skb = *pskb; in ipvlan_handle_frame()
742 return ipvlan_handle_mode_l2(pskb, port); in ipvlan_handle_frame()
744 return ipvlan_handle_mode_l3(pskb, port); in ipvlan_handle_frame()