From: Haomai Wang Date: Fri, 6 May 2016 16:12:24 +0000 (+0800) Subject: AsyncConnection: release dispatch throttle with fast dispatch message X-Git-Tag: v11.0.0~138^2~8 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=eabeecf8b2e8002e5f5f7ca18c66f60ea3d7b235;p=ceph.git AsyncConnection: release dispatch throttle with fast dispatch message Signed-off-by: Haomai Wang --- diff --git a/src/msg/async/AsyncConnection.cc b/src/msg/async/AsyncConnection.cc index b0e4455ec331..d52f4b160c34 100644 --- a/src/msg/async/AsyncConnection.cc +++ b/src/msg/async/AsyncConnection.cc @@ -895,7 +895,7 @@ void AsyncConnection::process() delay_state->queue(delay_period, release, message); } else if (async_msgr->ms_can_fast_dispatch(message)) { lock.Unlock(); - async_msgr->ms_fast_dispatch(message); + dispatch_queue->fast_dispatch(message); lock.Lock(); } else { dispatch_queue->enqueue(message, message->get_priority(), conn_id);