diff options
author | David S. Miller <davem@davemloft.net> | 2009-01-27 16:22:32 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-01-27 16:22:32 -0800 |
commit | 0c8dfc830aadd978e461dad66c33741b71c6a0be (patch) | |
tree | 19b11c0ed81ffdd91250dcf8a8b9b84126a03ce7 /drivers/net/bnx2x_main.c | |
parent | d5a9e24afb4ab38110ebb777588ea0bd0eacbd0a (diff) |
net: Add skb_record_rx_queue() calls to multiqueue capable drivers.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bnx2x_main.c')
-rw-r--r-- | drivers/net/bnx2x_main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/bnx2x_main.c b/drivers/net/bnx2x_main.c index 71f81c79d638..88da14c141f4 100644 --- a/drivers/net/bnx2x_main.c +++ b/drivers/net/bnx2x_main.c @@ -1325,6 +1325,7 @@ static void bnx2x_tpa_stop(struct bnx2x *bp, struct bnx2x_fastpath *fp, skb->protocol = eth_type_trans(skb, bp->dev); skb->ip_summed = CHECKSUM_UNNECESSARY; + skb_record_rx_queue(skb, queue); { struct iphdr *iph; |