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/sfc | |
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/sfc')
-rw-r--r-- | drivers/net/sfc/rx.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/sfc/rx.c b/drivers/net/sfc/rx.c index a0345b38097..66d7fe3db3e 100644 --- a/drivers/net/sfc/rx.c +++ b/drivers/net/sfc/rx.c @@ -575,6 +575,8 @@ void __efx_rx_packet(struct efx_channel *channel, /* Set the SKB flags */ skb->ip_summed = CHECKSUM_NONE; + skb_record_rx_queue(skb, channel->channel); + /* Pass the packet up */ netif_receive_skb(skb); |