]> git.openfabrics.org - ~shefty/librdmacm.git/commitdiff
rsocket: Change keepalive to 0-byte RDMA write
authorSusan K. Coulter <markus@cj-fe1.lanl.gov>
Mon, 16 Jun 2014 17:28:08 +0000 (10:28 -0700)
committerSean Hefty <sean.hefty@intel.com>
Wed, 18 Jun 2014 18:07:05 +0000 (11:07 -0700)
Signed-off-by: Susan K. Coulter <markus@cj-fe1.lanl.gov>
Signed-off-by: Sean Hefty <sean.hefty@intel.com>
src/rsocket.c

index 9a893ca72a2c20ddd021256b28a3bda2c1ff4d85..0e5635f0a1d82e45668dd3874116c7a4597e1ed1 100644 (file)
@@ -156,6 +156,7 @@ enum {
 
 enum {
        RS_CTRL_DISCONNECT,
+       RS_CTRL_KEEPALIVE,
        RS_CTRL_SHUTDOWN
 };
 
@@ -4169,18 +4170,17 @@ static void tcp_svc_process_sock(struct rs_svc *svc)
 }
 
 /*
- * Send a credit update as the keep-alive message.  We may or may not have
- * any credits, but if we do, then we require a minimum of 2 control credits
- * for protocols that do not support RDMA write with immediate data.  There's
- * no need to send a keep-alive message if we have any messages outstanding,
- * and we start with a minimum of 2 credits.  For simplicity, we just check
- * that both credits are available before sending the keep-alive.
+ * Send a 0 byte RDMA write with immediate as keep-alive message.
+ * This avoids the need for the receive side to do any acknowledgment.
  */
 static void tcp_svc_send_keepalive(struct rsocket *rs)
 {
        fastlock_acquire(&rs->cq_lock);
-       if (rs_2ctrl_avail(rs) && (rs->state & rs_connected))
-               rs_send_credits(rs);
+       if (rs_ctrl_avail(rs) && (rs->state & rs_connected)) {
+               rs->ctrl_seqno++;
+               rs_post_write(rs, NULL, 0, rs_msg_set(RS_OP_CTRL, RS_CTRL_KEEPALIVE),
+                             0, (uint64_t) NULL, (uint64_t) NULL);
+       }
        fastlock_release(&rs->cq_lock);
 }