tipc: fix problem with parallel link synchronization mechanism
authorJon Paul Maloy <jon.maloy@ericsson.com>
Tue, 28 Apr 2015 20:59:04 +0000 (16:59 -0400)
committerDavid S. Miller <davem@davemloft.net>
Wed, 29 Apr 2015 19:08:59 +0000 (15:08 -0400)
commit0d699f28ee5d0641470a603ab5904e463cb1532a
tree597955a870c0228131cb61bac200423b275033ba
parentf2f67390a4b961dae83733732e96e1a394a53c4e
tipc: fix problem with parallel link synchronization mechanism

Currently, we try to accumulate arrived packets in the links's
'deferred' queue during the parallel link syncronization phase.

This entails two problems:

- With an unlucky combination of arriving packets the algorithm
  may go into a lockstep with the out-of-sequence handling function,
  where the synch mechanism is adding a packet to the deferred queue,
  while the out-of-sequence handling is retrieving it again, thus
  ending up in a loop inside the node_lock scope.

- Even if this is avoided, the link will very often send out
  unnecessary protocol messages, in the worst case leading to
  redundant retransmissions.

We fix this by just dropping arriving packets on the upcoming link
during the synchronization phase, thus relying on the retransmission
protocol to resolve the situation once the two links have arrived to
a synchronized state.

Reviewed-by: Erik Hugne <erik.hugne@ericsson.com>
Reviewed-by: Ying Xue <ying.xue@windriver.com>
Signed-off-by: Jon Maloy <jon.maloy@ericsson.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/tipc/link.c