aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--host/lib/rfnoc/ctrlport_endpoint.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/host/lib/rfnoc/ctrlport_endpoint.cpp b/host/lib/rfnoc/ctrlport_endpoint.cpp
index 2078ecce1..3a569fae1 100644
--- a/host/lib/rfnoc/ctrlport_endpoint.cpp
+++ b/host/lib/rfnoc/ctrlport_endpoint.cpp
@@ -453,6 +453,14 @@ private:
// Filter by op_code, address and seq_num
if (rx_ctrl.seq_num == request.seq_num && rx_ctrl.op_code == request.op_code
&& rx_ctrl.address == request.address) {
+ // If we find the response for our request, and the client
+ // has not requested acknowledgements, then simply return,
+ // ignoring any error status in the response. This restores
+ // the pre-0caed5529 behavior.
+ if (!require_ack) {
+ return {};
+ }
+
// Validate transaction status
if (rx_ctrl.status == CMD_CMDERR) {
throw uhd::op_failed("Control operation returned a failing status");