From 1aa8331957643550a0fab71f5930ade20f6e2b13 Mon Sep 17 00:00:00 2001 From: yehu Date: Mon, 2 Sep 2019 16:35:22 +0800 Subject: [PATCH] async/dpdk: fix compile errors from ceph::mutex update Signed-off-by: yehu --- src/msg/async/dpdk/DPDKStack.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/msg/async/dpdk/DPDKStack.cc b/src/msg/async/dpdk/DPDKStack.cc index 65022344de3..50c0b6cbff5 100644 --- a/src/msg/async/dpdk/DPDKStack.cc +++ b/src/msg/async/dpdk/DPDKStack.cc @@ -106,7 +106,7 @@ void DPDKWorker::initialize() sdev->set_local_queue(i, std::move(qp)); std::lock_guard l{lock}; ++queue_init_done; - cond.Signal(); + cond.notify_all(); } else { // auto master = qid % sdev->hw_queues_count(); // sdev->set_local_queue(create_proxy_net_device(master, sdev.get())); -- 2.39.5