qlge: bugfix: Use netif_receive_skb() and vlan_hwaccel_receive_skb().
Replace calls to vlan_hwaccel_rx() and netif_rx(). Thanks to Dave Miller for pointing out the the driver was making the wrong upcall for passing packets into the stack. Signed-off-by: Ron Mercer <ron.mercer@qlogic.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
d4675b52a9
commit
7a9deb661f
|
@ -1449,12 +1449,12 @@ static void ql_process_mac_rx_intr(struct ql_adapter *qdev,
|
||||||
if (qdev->vlgrp && (ib_mac_rsp->flags2 & IB_MAC_IOCB_RSP_V)) {
|
if (qdev->vlgrp && (ib_mac_rsp->flags2 & IB_MAC_IOCB_RSP_V)) {
|
||||||
QPRINTK(qdev, RX_STATUS, DEBUG,
|
QPRINTK(qdev, RX_STATUS, DEBUG,
|
||||||
"Passing a VLAN packet upstream.\n");
|
"Passing a VLAN packet upstream.\n");
|
||||||
vlan_hwaccel_rx(skb, qdev->vlgrp,
|
vlan_hwaccel_receive_skb(skb, qdev->vlgrp,
|
||||||
le16_to_cpu(ib_mac_rsp->vlan_id));
|
le16_to_cpu(ib_mac_rsp->vlan_id));
|
||||||
} else {
|
} else {
|
||||||
QPRINTK(qdev, RX_STATUS, DEBUG,
|
QPRINTK(qdev, RX_STATUS, DEBUG,
|
||||||
"Passing a normal packet upstream.\n");
|
"Passing a normal packet upstream.\n");
|
||||||
netif_rx(skb);
|
netif_receive_skb(skb);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue