Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
parent - dprc.1
Creating Non nested DPRC
NEW DPRCs
dprc.1
  dprc.2
Using board type as 2160
Using High Performance Buffers

##################### Container  dprc.2  is created ####################

Container dprc.2 have following resources :=>

 * 3 DPMCP
 * 16 DPBP
 * 8 DPCON
 * 16 DPSECI
 * 4 DPNI
 * 34 DPIO
 * 8 DPCI
 * 60 DPDMAI
 * 0 DPRTC


######################### Configured Interfaces #########################

Interface Name        Endpoint              Mac Address              
==============        ========              ==================       
dpni.8                dpmac.5               -Dynamic-                
dpni.9                dpmac.3               -Dynamic-                
dpni.10               dpmac.6               -Dynamic-                
dpni.11               dpmac.4               -Dynamic-

PCI Network Interfaces

This was tested specifically with an Intel X710 card - steps may need adaptation for other cards.

Code Block
echo Y > /sys/module/vfio_pci/parameters/disable_idle_d3
dpdk-devbind.py --bind vfio-pci 01:00.*

For testpmd need to specifically pass each pci device - e.g.:

Code Block
dpdk-testpmd -a 01:00.0 -a 01:00.1 -a 01:00.2 -a 01:00.3 -- -i

testpmd

Code Block
# enable 2G pages
dpdk-hugepages.py --setup 2G

# interactive testpmd session
dpdk-testpmd -- -i

...