From bee27a41170d80b0fa5c35e07653b28702b08590 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Wed, 19 Oct 2016 17:49:06 -0700 Subject: rfnoc: Fixed graph search algorithm for active-ports only --- host/include/uhd/rfnoc/node_ctrl_base.ipp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'host/include') diff --git a/host/include/uhd/rfnoc/node_ctrl_base.ipp b/host/include/uhd/rfnoc/node_ctrl_base.ipp index 4ab25c597..d300f72a7 100644 --- a/host/include/uhd/rfnoc/node_ctrl_base.ipp +++ b/host/include/uhd/rfnoc/node_ctrl_base.ipp @@ -59,7 +59,7 @@ namespace uhd { ) { size_t our_port = it->first; if (active_only - and not (downstream ? _tx_streamer_active[our_port] : _tx_streamer_active[our_port] )) { + and not (downstream ? _tx_streamer_active[our_port] : _rx_streamer_active[our_port] )) { continue; } sptr one_next_node = it->second.lock(); -- cgit v1.2.3