diff options
author | Adir lev <adirl@mellanox.com> | 2017-05-28 09:36:02 +0200 |
---|---|---|
committer | Adir Lev <adirl@mellanox.com> | 2017-06-25 00:54:32 +0200 |
commit | 87451fb25d06b014e25cc36c933acc60251d3344 (patch) | |
tree | 9ee78b2ab52d7cc67d405ab14d558e0290449616 /src/msg/async/rdma/RDMAStack.cc | |
parent | Merge pull request #15876 from gmayyyha/config-unused-opt (diff) | |
download | ceph-87451fb25d06b014e25cc36c933acc60251d3344.tar.xz ceph-87451fb25d06b014e25cc36c933acc60251d3344.zip |
msg/async/rdma: if failed to send push csi to the back
Change-Id: If6c72917b6e3a836279b86a4d5e9e54383d7b4bd
Signed-off-by: Adir lev <adirl@mellanox.com>
Diffstat (limited to '')
-rw-r--r-- | src/msg/async/rdma/RDMAStack.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/msg/async/rdma/RDMAStack.cc b/src/msg/async/rdma/RDMAStack.cc index 020dd9853ed..c9b74d1538a 100644 --- a/src/msg/async/rdma/RDMAStack.cc +++ b/src/msg/async/rdma/RDMAStack.cc @@ -499,7 +499,7 @@ void RDMAWorker::handle_pending_message() ldout(cct, 20) << __func__ << " sent pending bl socket=" << o << " r=" << r << dendl; if (r < 0) { if (r == -EAGAIN) { - pending_sent_conns.push_front(o); + pending_sent_conns.push_back(o); dispatcher->make_pending_worker(this); return ; } |