diff options
author | Peter Mikus <pmikus@cisco.com> | 2019-07-17 13:41:09 +0000 |
---|---|---|
committer | Peter Mikus <pmikus@cisco.com> | 2019-07-17 13:41:09 +0000 |
commit | 8109bdd518242f4b8e50c37fea94371fa1ab62c6 (patch) | |
tree | 9a3bb257186a369e24ca86ab7d2c7cbc71034e1d /resources/templates | |
parent | 4cb1e342832d8bd94d62f6f283223b54e426926b (diff) |
FIX: Put VM interface pinning back
- Must be there for DPDK NFs
Change-Id: Icda8069beab4ce8ced17a372c84524c4824abd9d
Signed-off-by: Peter Mikus <pmikus@cisco.com>
Diffstat (limited to 'resources/templates')
-rw-r--r-- | resources/templates/vm/init.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/resources/templates/vm/init.sh b/resources/templates/vm/init.sh index c970252d61..716ff9af08 100644 --- a/resources/templates/vm/init.sh +++ b/resources/templates/vm/init.sh @@ -7,5 +7,11 @@ mount -t devpts -o "rw,noexec,nosuid,gid=5,mode=0620" devpts /dev/pts || true mount -t tmpfs -o "rw,noexec,nosuid,size=10%,mode=0755" tmpfs /run mount -t tmpfs -o "rw,noexec,nosuid,size=10%,mode=0755" tmpfs /tmp mount -t hugetlbfs -o "rw,relatime,pagesize=2M" hugetlbfs /dev/hugepages +echo 0000:00:06.0 > /sys/bus/pci/devices/0000:00:06.0/driver/unbind +echo 0000:00:07.0 > /sys/bus/pci/devices/0000:00:07.0/driver/unbind +echo vfio-pci > /sys/bus/pci/devices/0000:00:06.0/driver_override +echo vfio-pci > /sys/bus/pci/devices/0000:00:07.0/driver_override +echo 0000:00:06.0 > /sys/bus/pci/drivers/vfio-pci/bind +echo 0000:00:07.0 > /sys/bus/pci/drivers/vfio-pci/bind $vnf_bin poweroff -f |