Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

lro: kill lro_vlan_hwaccel_receive_skb

no longer used

Signed-off-by: Jiri Pirko <jpirko@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Jiri Pirko and committed by
David S. Miller
7756a96e b4950095

-25
-10
include/linux/inet_lro.h
··· 137 137 void *priv); 138 138 139 139 /* 140 - * Processes a SKB with VLAN HW acceleration support 141 - */ 142 - 143 - void lro_vlan_hwaccel_receive_skb(struct net_lro_mgr *lro_mgr, 144 - struct sk_buff *skb, 145 - struct vlan_group *vgrp, 146 - u16 vlan_tag, 147 - void *priv); 148 - 149 - /* 150 140 * Processes a fragment list 151 141 * 152 142 * This functions aggregate fragments and generate SKBs do pass
-15
net/ipv4/inet_lro.c
··· 523 523 } 524 524 EXPORT_SYMBOL(lro_receive_skb); 525 525 526 - void lro_vlan_hwaccel_receive_skb(struct net_lro_mgr *lro_mgr, 527 - struct sk_buff *skb, 528 - struct vlan_group *vgrp, 529 - u16 vlan_tag, 530 - void *priv) 531 - { 532 - if (__lro_proc_skb(lro_mgr, skb, vgrp, vlan_tag, priv)) { 533 - if (lro_mgr->features & LRO_F_NAPI) 534 - vlan_hwaccel_receive_skb(skb, vgrp, vlan_tag); 535 - else 536 - vlan_hwaccel_rx(skb, vgrp, vlan_tag); 537 - } 538 - } 539 - EXPORT_SYMBOL(lro_vlan_hwaccel_receive_skb); 540 - 541 526 void lro_receive_frags(struct net_lro_mgr *lro_mgr, 542 527 struct skb_frag_struct *frags, 543 528 int len, int true_size, void *priv, __wsum sum)