From 193dc2117a1fb96d9fdd98258c1040775a33f033 Mon Sep 17 00:00:00 2001 From: chigang Date: Thu, 10 Aug 2017 10:40:11 +0800 Subject: Add dpdk plugin JIRA: COMPASS-550 add OVS-DPDK plugin, there are two roles in this plugin. 1. ins_dpdk is for dpdk installation and hugepages setting. 2. ins_ovs is for openvswitch installation. add dpdk scenario networking configuration example called "network_cfg_dpdk.yaml" Change-Id: Ifd8c1aadc218753f99bc26bb530e7cf9962ad8e3 Signed-off-by: chigang --- plugins/dpdk/roles/ins_dpdk/templates/dpdk_vfio.sh.j2 | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 plugins/dpdk/roles/ins_dpdk/templates/dpdk_vfio.sh.j2 (limited to 'plugins/dpdk/roles/ins_dpdk/templates/dpdk_vfio.sh.j2') diff --git a/plugins/dpdk/roles/ins_dpdk/templates/dpdk_vfio.sh.j2 b/plugins/dpdk/roles/ins_dpdk/templates/dpdk_vfio.sh.j2 new file mode 100644 index 00000000..58839342 --- /dev/null +++ b/plugins/dpdk/roles/ins_dpdk/templates/dpdk_vfio.sh.j2 @@ -0,0 +1,6 @@ +#!/bin/bash +ifdown {{ item.device_name }} +modprobe vfio-pci +chmod a+x /dev/vfio +chmod 0666 /dev/vfio/* +{{ item.dpdk_dir }}/tools/dpdk-devbind.py --bind=vfio-pci {{ item.device_name }} -- cgit 1.2.3-korg