aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormichael-west <michael.west@ettus.com>2018-12-20 22:53:23 -0800
committermichael-west <michael.west@ettus.com>2018-12-20 23:13:42 -0800
commit4c23ce7ffbd04579180f16df8c92872b8f87c6ef (patch)
tree7f5a96758a21cf9a01357adb53976f0b493a83a5
parentRFNoC: Fix stream command propagation (diff)
downloaduhd-4c23ce7ffbd04579180f16df8c92872b8f87c6ef.tar.xz
uhd-4c23ce7ffbd04579180f16df8c92872b8f87c6ef.zip
RFNoC: Fix for late packet errors
- Fix variable name in recent graph traversal changes
-rw-r--r--host/include/uhd/rfnoc/node_ctrl_base.ipp4
1 files changed, 3 insertions, 1 deletions
diff --git a/host/include/uhd/rfnoc/node_ctrl_base.ipp b/host/include/uhd/rfnoc/node_ctrl_base.ipp
index 266df445a..cb56e2d90 100644
--- a/host/include/uhd/rfnoc/node_ctrl_base.ipp
+++ b/host/include/uhd/rfnoc/node_ctrl_base.ipp
@@ -64,7 +64,9 @@ namespace uhd {
continue;
}
if (active_only
- and not (downstream ? _tx_streamer_active[our_port] : _rx_streamer_active[our_port] )) {
+ and not (downstream ?
+ _tx_streamer_active[connected_port] :
+ _rx_streamer_active[connected_port] )) {
continue;
}
sptr one_next_node = it->second.lock();