From: Adir Lev Date: Tue, 19 Apr 2016 12:19:28 +0000 (+0300) Subject: xio: rename enqueue_for_send() to enqueue() X-Git-Tag: v11.0.0~513^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=b3dae35c7ae1cf788aa3fe91d1f5cc2108d64196;p=ceph.git xio: rename enqueue_for_send() to enqueue() Signed-off-by: Adir Lev --- diff --git a/src/msg/xio/XioMessenger.cc b/src/msg/xio/XioMessenger.cc index 8927cb2e570..c14ebe4da90 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 ac32840ee57..7aee6364854 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 ca59b60eedb..01f95807e6d 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);