diff options
author | Martin Braun <martin.braun@ettus.com> | 2016-08-09 17:48:58 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2016-08-09 17:48:58 -0700 |
commit | 0837c4e2a3e878f8c45aa723f7d468839f4ba256 (patch) | |
tree | a39dbbe12413beec71e1bde61af06a13c8f8e2a8 /host/lib/usrp/x300/x300_impl.cpp | |
parent | 19ebebbc7fdbf8d245579d43ed85af857c4591d2 (diff) | |
download | uhd-0837c4e2a3e878f8c45aa723f7d468839f4ba256.tar.gz uhd-0837c4e2a3e878f8c45aa723f7d468839f4ba256.tar.bz2 uhd-0837c4e2a3e878f8c45aa723f7d468839f4ba256.zip |
x300: Device propagates suggested TX MTU through the mtu property, not get_tx_hints()
Diffstat (limited to 'host/lib/usrp/x300/x300_impl.cpp')
-rw-r--r-- | host/lib/usrp/x300/x300_impl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/x300/x300_impl.cpp b/host/lib/usrp/x300/x300_impl.cpp index ee0baa2a3..43ccd26f5 100644 --- a/host/lib/usrp/x300/x300_impl.cpp +++ b/host/lib/usrp/x300/x300_impl.cpp @@ -648,7 +648,7 @@ void x300_impl::setup_mb(const size_t mb_i, const uhd::device_addr_t &dev_addr) } _tree->create<size_t>(mb_path / "mtu/recv").set(_max_frame_sizes.recv_frame_size); - _tree->create<size_t>(mb_path / "mtu/send").set(_max_frame_sizes.send_frame_size); + _tree->create<size_t>(mb_path / "mtu/send").set(std::min(_max_frame_sizes.send_frame_size, X300_1GE_DATA_FRAME_MAX_SIZE)); _tree->create<double>(mb_path / "link_max_rate").set(X300_MAX_RATE_10GIGE); } |