Files
kernel_arpi/include/linux
Tom Herbert 76cc8b13a6 net: fix problem in dequeuing from input_pkt_queue
Fix some issues introduced in batch skb dequeuing for input_pkt_queue.
The primary issue it that the queue head must be incremented only
after a packet has been processed, that is only after
__netif_receive_skb has been called.  This is needed for the mechanism
to prevent OOO packet in RFS.  Also when flushing the input_pkt_queue
and process_queue, the process queue should be done first to prevent
OOO packets.

Because the input_pkt_queue has been effectively split into two queues,
the calculation of the tail ptr is no longer correct.  The correct value
would be head+input_pkt_queue->len+process_queue->len.  To avoid
this calculation we added an explict input_queue_tail in softnet_data.
The tail value is simply incremented when queuing to input_pkt_queue.

Signed-off-by: Tom Herbert <therbert@google.com>
Acked-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2010-05-21 00:38:33 -07:00
..
2010-05-17 22:39:48 -07:00
2010-05-03 08:33:00 -04:00
2010-04-23 14:43:45 -04:00
2010-05-14 17:08:01 -04:00
2010-05-19 13:38:54 -04:00
2010-04-25 08:54:42 +02:00
2010-05-10 16:08:01 -07:00
2010-04-01 01:31:13 -07:00
2010-05-03 11:50:57 +02:00
2010-05-11 14:40:55 +02:00
2010-05-03 11:50:57 +02:00
2010-04-23 02:08:44 +02:00
2010-05-14 15:09:32 -04:00
2010-04-03 14:56:05 -07:00
2010-04-08 13:37:18 +02:00
2010-05-11 14:40:55 +02:00
2010-04-13 14:49:34 -07:00
2010-04-02 14:30:39 -07:00
2010-05-10 23:08:19 +02:00
2010-05-03 15:53:54 -07:00
2010-05-11 10:09:47 +02:00
2010-05-06 10:56:07 +10:00
2010-05-17 17:18:50 -07:00
2010-04-03 15:09:04 -07:00
2010-05-10 11:08:35 -07:00
2010-05-15 23:28:39 -07:00
2010-04-13 12:43:42 +02:00
2010-05-12 23:02:23 -07:00