Commit 7cbf6784 authored by Jeff Garzik's avatar Jeff Garzik

[netdrvr 8139cp] must call NAPI-specific vlan hook

parent 411aa79d
......@@ -468,7 +468,8 @@ static inline void cp_rx_skb (struct cp_private *cp, struct sk_buff *skb,
#if CP_VLAN_TAG_USED
if (cp->vlgrp && (desc->opts2 & RxVlanTagged)) {
vlan_hwaccel_rx(skb, cp->vlgrp, be16_to_cpu(desc->opts2 & 0xffff));
vlan_hwaccel_receive_skb(skb, cp->vlgrp,
be16_to_cpu(desc->opts2 & 0xffff));
} else
#endif
netif_receive_skb(skb);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment