break;
case XioSubmit::INCOMING_MSG_RELEASE:
deferred_q.erase(q_iter);
- portal->release_xio_rsp(static_cast<XioRsp*>(xs));
+ portal->release_xio_msg(static_cast<XioRsp*>(xs));
break;
default:
ldout(msgr->cct,0) << __func__ << ": Unknown Msg type " << xs->type << dendl;
int bind(struct xio_session_ops *ops, const string &base_uri,
uint16_t port, uint16_t *assigned_port);
- inline void release_xio_rsp(XioRsp* xrsp) {
+ inline void release_xio_msg(XioRsp* xrsp) {
struct xio_msg *msg = xrsp->dequeue();
struct xio_msg *next_msg = NULL;
int code;
break;
default:
/* INCOMING_MSG_RELEASE */
- release_xio_rsp(static_cast<XioRsp*>(xs));
+ release_xio_msg(static_cast<XioRsp*>(xs));
break;
};
}
default:
/* INCOMING_MSG_RELEASE */
q_iter = send_q.erase(q_iter);
- release_xio_rsp(static_cast<XioRsp*>(xs));
+ release_xio_msg(static_cast<XioRsp*>(xs));
continue;
} /* switch (xs->type) */
q_iter = send_q.erase(q_iter);