aboutsummaryrefslogtreecommitdiffstats
path: root/host/tests
diff options
context:
space:
mode:
Diffstat (limited to 'host/tests')
-rw-r--r--host/tests/dpdk_port_test.cpp65
1 files changed, 65 insertions, 0 deletions
diff --git a/host/tests/dpdk_port_test.cpp b/host/tests/dpdk_port_test.cpp
index 65cf045eb..7ef386c52 100644
--- a/host/tests/dpdk_port_test.cpp
+++ b/host/tests/dpdk_port_test.cpp
@@ -5,10 +5,65 @@
//
#include <uhdlib/transport/dpdk/common.hpp>
+#include <uhdlib/transport/dpdk/service_queue.hpp>
#include <boost/program_options.hpp>
#include <iostream>
+#include <memory>
+#include <thread>
namespace po = boost::program_options;
+namespace dpdk = uhd::transport::dpdk;
+
+void requester(dpdk::service_queue* queue)
+{
+ uint32_t count = 0;
+ std::chrono::seconds block(-1);
+ auto req = dpdk::wait_req_alloc(
+ dpdk::wait_type::WAIT_TYPE_COUNT, &count
+ );
+ std::cout << "Requesting count increment" << std::endl;
+ queue->submit(req, block);
+ if (count == 1) {
+ std::cout << "PASS: Count=1" << std::endl;
+ }
+ wait_req_put(req);
+
+ std::cout << "Requesting termination" << std::endl;
+ req = dpdk::wait_req_alloc(
+ dpdk::wait_type::WAIT_FLOW_CLOSE, NULL
+ );
+ queue->submit(req, block);
+ wait_req_put(req);
+}
+
+void servicer(uhd::transport::dpdk::service_queue* queue)
+{
+ bool running = true;
+ while (running) {
+ auto req = queue->pop();
+ if (!req) {
+ std::this_thread::yield();
+ continue;
+ }
+ switch (req->reason) {
+ case dpdk::wait_type::WAIT_TYPE_COUNT:
+ (*(uint32_t *) req->data)++;
+ break;
+ case dpdk::wait_type::WAIT_FLOW_CLOSE:
+ running = false;
+ break;
+ case dpdk::wait_type::WAIT_SIMPLE:
+ break;
+ default:
+ std::cout << "ERROR: Received unexpected service request type" << std::endl;
+ throw uhd::runtime_error("Unexpected service request type");
+ }
+ if (queue->complete(req) == -ENOBUFS) {
+ req->reason = dpdk::wait_type::WAIT_SIMPLE;
+ while (queue->requeue(req) == -ENOBUFS);
+ }
+ }
+}
int main(int argc, char **argv)
{
@@ -36,6 +91,16 @@ int main(int argc, char **argv)
std::cout << "Port 0 MTU: " << port->get_mtu() << std::endl;
status = ctx->get_port_link_status(0);
std::cout << "Port 0 Link up: " << status << std::endl;
+
+ std::cout << std::endl << "Now testing the service queue..." << std::endl;
+ // Technically this isn't correct, since the lcore ID would need to be the
+ // service thread's, but we didn't use a DPDK lcore for this...
+ auto queue = new uhd::transport::dpdk::service_queue(8, rte_lcore_id());
+ std::thread service_thread(servicer, queue);
+ requester(queue);
+ service_thread.join();
+ std::cout << "PASS: Service thread terminated" << std::endl;
+ delete queue;
ctx.reset();
return 0;
}