diff options
author | Luc Provoost <luc.provoost@intel.com> | 2021-05-10 10:06:30 +0200 |
---|---|---|
committer | Luc Provoost <luc.provoost@intel.com> | 2021-05-10 08:41:09 +0000 |
commit | 894f62216ca3c97ef0c1c09b9475459b9324b1bb (patch) | |
tree | e80c592a83e49f87dc98612a3400103b07d2a346 /VNFs/DPPD-PROX/helper-scripts/rapid/check_prox_system_setup.sh | |
parent | 1492024f49f6952fb9f99ac70d0ae1c26fb946ad (diff) |
Reinstate installation of igb_uio
For good performance on some platforms, we need the igb_uio driver. With
this change, the driver is compiled and insmod done during boot time.
When running the rapid scripts, the devbind.sh script is sent to the
instances (after replacing the string "MACADDRESS"). Make sure you
uncomment the proper line to chose which driver you want to use.
Change-Id: I69549400a97f29e06add6ab44515e96ffa9ce0e8
Signed-off-by: Luc Provoost <luc.provoost@intel.com>
Diffstat (limited to 'VNFs/DPPD-PROX/helper-scripts/rapid/check_prox_system_setup.sh')
-rwxr-xr-x | VNFs/DPPD-PROX/helper-scripts/rapid/check_prox_system_setup.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/VNFs/DPPD-PROX/helper-scripts/rapid/check_prox_system_setup.sh b/VNFs/DPPD-PROX/helper-scripts/rapid/check_prox_system_setup.sh index 834554dc..3cf1113d 100755 --- a/VNFs/DPPD-PROX/helper-scripts/rapid/check_prox_system_setup.sh +++ b/VNFs/DPPD-PROX/helper-scripts/rapid/check_prox_system_setup.sh @@ -52,6 +52,12 @@ then ## Only then, they will be able to connect to the PROX instance ## and start the testing touch "$system_ready" + ## On some systems, we still need to use the igb_uio driver. + ## Example: good performance on AWS with the ENA interface. + ## Make sure that you change devbind.sh to use the preferred + ## driver. vfio is the default. + modprobe uio + insmod /opt/rapid/dpdk/build/kmod/igb_uio.ko wc_activate=1 exit 0 ;; isolated_cores=*) |