net: fix multiqueue selection
authorEric Dumazet <edumazet@google.com>
Sat, 7 Sep 2013 19:02:57 +0000 (12:02 -0700)
committerDavid S. Miller <davem@davemloft.net>
Wed, 11 Sep 2013 20:10:00 +0000 (16:10 -0400)
commit50d1784ee4683f073c0362ee360bfae7a3333d6c
treec3d46665ad4ad2a6a82ecd2f78aa80038bb59281
parent88362ad8f9a6cea787420b57cc27ccacef000dbe
net: fix multiqueue selection

commit 416186fbf8c5b4e4465 ("net: Split core bits of netdev_pick_tx
into __netdev_pick_tx") added a bug that disables caching of queue
index in the socket.

This is the source of packet reorders for TCP flows, and
again this is happening more often when using FQ pacing.

Old code was doing

if (queue_index != old_index)
sk_tx_queue_set(sk, queue_index);

Alexander renamed the variables but forgot to change sk_tx_queue_set()
2nd parameter.

if (queue_index != new_index)
sk_tx_queue_set(sk, queue_index);

This means we store -1 over and over in sk->sk_tx_queue_mapping

Signed-off-by: Eric Dumazet <edumazet@google.com>
Cc: Alexander Duyck <alexander.h.duyck@intel.com>
Acked-by: Alexander Duyck <alexander.h.duyck@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/flow_dissector.c