aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib
diff options
context:
space:
mode:
authorAndrew Lynch <andrew.lynch@ni.com>2021-12-10 15:52:05 -0600
committerAaron Rossetto <aaron.rossetto@ni.com>2021-12-17 09:37:34 -0600
commit4439497afc8e9c9dfb982859c6b438d72c775bca (patch)
treec6838da4da35dfbdb7346a2518ddd179292ead9e /host/lib
parent52c459acbcd020f40c208504c8604c59d18d836d (diff)
downloaduhd-4439497afc8e9c9dfb982859c6b438d72c775bca.tar.gz
uhd-4439497afc8e9c9dfb982859c6b438d72c775bca.tar.bz2
uhd-4439497afc8e9c9dfb982859c6b438d72c775bca.zip
dpdk: support new MTU discovery
Diffstat (limited to 'host/lib')
-rw-r--r--host/lib/transport/dpdk_simple.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/host/lib/transport/dpdk_simple.cpp b/host/lib/transport/dpdk_simple.cpp
index 0e52d425d..4890deea6 100644
--- a/host/lib/transport/dpdk_simple.cpp
+++ b/host/lib/transport/dpdk_simple.cpp
@@ -162,12 +162,12 @@ private:
link_params_t _get_default_link_params()
{
link_params_t link_params;
- link_params.recv_frame_size = 8000;
- link_params.send_frame_size = 8000;
+ link_params.recv_frame_size = 8016;
+ link_params.send_frame_size = 8016;
link_params.num_recv_frames = 1;
link_params.num_send_frames = 1;
- link_params.recv_buff_size = 8000;
- link_params.send_buff_size = 8000;
+ link_params.recv_buff_size = 8016;
+ link_params.send_buff_size = 8016;
return link_params;
}