From b3dae35c7ae1cf788aa3fe91d1f5cc2108d64196 Mon Sep 17 00:00:00 2001 From: Adir Lev Date: Tue, 19 Apr 2016 15:19:28 +0300 Subject: [PATCH] xio: rename enqueue_for_send() to enqueue() Signed-off-by: Adir Lev --- src/msg/xio/XioMessenger.cc | 2 +- src/msg/xio/XioMsg.cc | 2 +- src/msg/xio/XioPortal.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/msg/xio/XioMessenger.cc b/src/msg/xio/XioMessenger.cc index 8927cb2e570d..c14ebe4da90f 100644 --- a/src/msg/xio/XioMessenger.cc +++ b/src/msg/xio/XioMessenger.cc @@ -932,7 +932,7 @@ assert(req->out.pdata_iov.nents || !nbuffers); } tail->next = NULL; } - xcon->portal->enqueue_for_send(xcon, xmsg); + xcon->portal->enqueue(xcon, xmsg); return code; } /* send_message(Message *, Connection *) */ diff --git a/src/msg/xio/XioMsg.cc b/src/msg/xio/XioMsg.cc index ac32840ee577..7aee63648548 100644 --- a/src/msg/xio/XioMsg.cc +++ b/src/msg/xio/XioMsg.cc @@ -29,7 +29,7 @@ int XioDispatchHook::release_msgs() new (xrsp) XioRsp(xcon, this); /* merge with portal traffic */ - xcon->portal->enqueue_for_send(xcon, xrsp); + xcon->portal->enqueue(xcon, xrsp); assert(r); return r; diff --git a/src/msg/xio/XioPortal.h b/src/msg/xio/XioPortal.h index ca59b60eedb0..01f95807e6de 100644 --- a/src/msg/xio/XioPortal.h +++ b/src/msg/xio/XioPortal.h @@ -175,7 +175,7 @@ public: xrsp->finalize(); /* unconditional finalize */ } - void enqueue_for_send(XioConnection *xcon, XioSubmit *xs) + void enqueue(XioConnection *xcon, XioSubmit *xs) { if (! _shutdown) { submit_q.enq(xcon, xs); -- 2.47.3