diff options
author | Alex Williams <alex.williams@ni.com> | 2019-03-18 15:12:21 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-03-25 10:15:58 -0700 |
commit | a7a0b9cd54ec8f1f3e0ceea2b7cea4a63767eb9e (patch) | |
tree | bace1a7182496d91c1096596775b97404ef114af | |
parent | e88f23b2bb8b63aaf7fd8bd90c39250f53fbc6cf (diff) | |
download | uhd-a7a0b9cd54ec8f1f3e0ceea2b7cea4a63767eb9e.tar.gz uhd-a7a0b9cd54ec8f1f3e0ceea2b7cea4a63767eb9e.tar.bz2 uhd-a7a0b9cd54ec8f1f3e0ceea2b7cea4a63767eb9e.zip |
docs: Fix typo for dpdk-num-mbufs and add config file location
-rw-r--r-- | host/docs/dpdk.dox | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/host/docs/dpdk.dox b/host/docs/dpdk.dox index 5fd2797ed..db4072b78 100644 --- a/host/docs/dpdk.dox +++ b/host/docs/dpdk.dox @@ -75,6 +75,10 @@ use. \subsection dpdk_nic_config NIC Configuration +Configuration of the NIC can be controlled via device arguments via the usual +methods, but the \ref page_configfiles "UHD configuration file" is the +recommended location. + In order to run, you'll need to set the permissions for your user to take over the vfio-pci devices, the hugepages, and the scheduler's settings for the threads (at a minimum). You may consider running you applications as root, at @@ -98,12 +102,12 @@ options: dpdk-driver=/usr/local/lib/dpdk-pmds/ ;dpdk-corelist is the -l flag for the DPDK EAL. See more at the link ; https://doc.dpdk.org/guides-17.11/linux_gsg/build_sample_apps.html#running-a-sample-application - dpdk-corelist=2,3 - ;dpdk-num-bufs is the total number of packet buffers allocated + dpdk-corelist=0,1 + ;dpdk-num-mbufs is the total number of packet buffers allocated ;to each direction's packet buffer pool ;This will be multiplied by the number of NICs, but NICs on the same ;CPU socket share a pool - dpdk-num-bufs=4095 + dpdk-num-mbufs=4095 ;dpdk-mbuf-cache-size is the number of buffers to cache for a CPU ;The cache reduces the interaction with the global pool dpdk-mbuf-cache-size=315 |