sparc64: ldc_connect() should not return EINVAL when handshake is in progress.
authorSowmini Varadhan <sowmini.varadhan@oracle.com>
Fri, 1 Aug 2014 13:50:40 +0000 (09:50 -0400)
committerDavid S. Miller <davem@davemloft.net>
Tue, 5 Aug 2014 03:18:17 +0000 (20:18 -0700)
The LDC handshake could have been asynchronously triggered
after ldc_bind() enables the ldc_rx() receive interrupt-handler
(and thus intercepts incoming control packets)
and before vio_port_up() calls ldc_connect(). If that is the case,
ldc_connect() should return 0 and let the state-machine
progress.

Signed-off-by: Sowmini Varadhan <sowmini.varadhan@oracle.com>
Acked-by: Karl Volz <karl.volz@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
arch/sparc/kernel/ldc.c

index e01d75d40329f010a1cc3c41020e100c6488e334..66dacd56bb1000193284f570074415eff947ba7f 100644 (file)
@@ -1336,7 +1336,7 @@ int ldc_connect(struct ldc_channel *lp)
        if (!(lp->flags & LDC_FLAG_ALLOCED_QUEUES) ||
            !(lp->flags & LDC_FLAG_REGISTERED_QUEUES) ||
            lp->hs_state != LDC_HS_OPEN)
-               err = -EINVAL;
+               err = ((lp->hs_state > LDC_HS_OPEN) ? 0 : -EINVAL);
        else
                err = start_handshake(lp);
 
This page took 0.026309 seconds and 5 git commands to generate.